Remove NODE ENV key from env config in next config
This commit is contained in:
parent
a180227356
commit
0ad0a18f06
@ -1,18 +1,16 @@
|
||||
const nextConfig = {
|
||||
// This is the base path for your application.
|
||||
basePath: '',
|
||||
basePath: "",
|
||||
|
||||
// This is the environment that your application is running in.
|
||||
env: {
|
||||
NODE_ENV: 'production',
|
||||
},
|
||||
env: {},
|
||||
|
||||
// This is the list of pages that should be exported when you run the `next export` command.
|
||||
exportPathMap: async function () {
|
||||
return {
|
||||
'/pages/*': { page: './pages/*' },
|
||||
"/pages/*": { page: "./pages/*" },
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = nextConfig;
|
||||
module.exports = nextConfig;
|
||||
|
Reference in New Issue
Block a user