We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc98601 commit 2e9e758Copy full SHA for 2e9e758
apps/web/next.config.mjs
@@ -1,4 +1,11 @@
1
/** @type {import('next').NextConfig} */
2
-const nextConfig = {};
+const nextConfig = {
3
+ images: {
4
+ unoptimized: true,
5
+ },
6
+ // Remove static export for Vercel deployment
7
+ // output: 'export',
8
+ // basePath: process.env.NODE_ENV === 'production' ? '/swush-me-app' : '',
9
+};
10
11
export default nextConfig;
0 commit comments