forked from github/plane
b406a70e72
Co-authored-by: Sainath <sainath@Sainaths-MacBook-Pro.local>
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;
|