2023-08-08 07:25:42 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
2023-08-18 09:46:10 +00:00
|
|
|
const path = require('path')
|
2023-08-08 07:25:42 +00:00
|
|
|
|
|
|
|
const nextConfig = {
|
2023-08-18 09:46:10 +00:00
|
|
|
reactStrictMode: false,
|
|
|
|
swcMinify: true,
|
2023-08-08 07:25:42 +00:00
|
|
|
experimental: {
|
2023-08-18 09:46:10 +00:00
|
|
|
outputFileTracingRoot: path.join(__dirname, "../../"),
|
2023-08-08 07:25:42 +00:00
|
|
|
appDir: true,
|
|
|
|
},
|
2023-08-18 09:46:10 +00:00
|
|
|
output: 'standalone'
|
2023-08-08 07:25:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = nextConfig;
|