fix: next js config to standalone mode

This commit is contained in:
Henit Chobisa 2023-08-18 09:46:10 +00:00
parent 46336bd0e6
commit 79845c4f0a

View File

@ -1,9 +1,14 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const path = require('path')
const nextConfig = { const nextConfig = {
reactStrictMode: false,
swcMinify: true,
experimental: { experimental: {
outputFileTracingRoot: path.join(__dirname, "../../"),
appDir: true, appDir: true,
}, },
output: 'standalone'
}; };
module.exports = nextConfig; module.exports = nextConfig;