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;