From 0ad0a18f06f0e93952e156bb34fd51115b04b3bb Mon Sep 17 00:00:00 2001 From: tony Date: Mon, 15 May 2023 16:12:50 -0700 Subject: [PATCH] Remove NODE ENV key from env config in next config --- next.config.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/next.config.js b/next.config.js index 0b9f229..7588ce4 100644 --- a/next.config.js +++ b/next.config.js @@ -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; \ No newline at end of file +module.exports = nextConfig;