Files
plane/space/next.config.js

15 lines
295 B
JavaScript
Raw Permalink Normal View History

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