mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
15 lines
295 B
JavaScript
15 lines
295 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const path = require("path");
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
experimental: {
|
|
outputFileTracingRoot: path.join(__dirname, "../../"),
|
|
appDir: true,
|
|
},
|
|
output: "standalone",
|
|
};
|
|
|
|
module.exports = nextConfig;
|