Remove NODE ENV key from env config in next config

This commit is contained in:
Caretaker0699 2023-05-15 16:12:50 -07:00
parent a180227356
commit 0ad0a18f06

View File

@ -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;