plane/apps/space/next.config.js
2023-08-30 13:41:25 +05:30

14 lines
277 B
JavaScript

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