first commit
This commit is contained in:
28
frontend/next.config.ts
Normal file
28
frontend/next.config.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
|
||||
const nextConfig = {
|
||||
basePath: process.env.BASE_PATH || "",
|
||||
assetPrefix: process.env.BASE_PATH || "",
|
||||
/* config options here */
|
||||
output: "standalone",
|
||||
env: {
|
||||
BASE_PATH: process.env.BASE_PATH || ""
|
||||
},
|
||||
typescript: {
|
||||
// !! WARN !!
|
||||
// Dangerously allow production builds to successfully complete even if
|
||||
// your project has type errors.
|
||||
// !! WARN !!
|
||||
ignoreBuildErrors: true,
|
||||
},
|
||||
|
||||
eslint: {
|
||||
// !! WARN !!
|
||||
// Dangerously allow production builds to successfully complete even if
|
||||
// your project has ESLint errors.
|
||||
// !! WARN !!
|
||||
ignoreDuringBuilds: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user