We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9a7c90 commit bf30e4bCopy full SHA for bf30e4b
next.config.ts
@@ -1,6 +1,6 @@
1
import type { NextConfig } from "next";
2
3
-const isProd = process.env.NODE_ENV === 'production';
+const isProd = process.env.NODE_ENV === "production";
4
5
const nextConfig: NextConfig = {
6
typescript: {
@@ -16,10 +16,9 @@ const nextConfig: NextConfig = {
16
images: {
17
unoptimized: true, // Disable default image optimization
18
},
19
- assetPrefix: isProd ? '/altair_dashboard' : '',
20
- basePath: isProd ? '/altair_dashboard' : '',
21
- output: 'export',
+ // assetPrefix: isProd ? '/altair_dashboard' : '',
+ // basePath: isProd ? '/altair_dashboard' : '',
+ output: "export",
22
};
23
24
export default nextConfig;
25
-
0 commit comments