Skip to content

Commit

Permalink
path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
muddlebee committed Dec 3, 2024
1 parent c13161e commit 254f55f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import type { NextConfig } from "next";
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: {
unoptimized: true,
},
basePath: process.env.NODE_ENV === 'production' ? '/swush-me-landing' : '',
}

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;
module.exports = nextConfig

0 comments on commit 254f55f

Please sign in to comment.