plane/apps/space/next.config.js

15 lines
293 B
JavaScript
Raw Normal View History

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