Files
plane/apps/space/next.config.js
T
8a95a41100 feat: Converting space app to pages dir (#2052)
Co-authored-by: Bavisetti Narayan <[email protected]>
Co-authored-by: NarayanBavisetti <[email protected]>
Co-authored-by: Bavisetti Narayan <[email protected]>
Co-authored-by: Nikhil <[email protected]>
Co-authored-by: M. Palanikannan <[email protected]>
Co-authored-by: Lakhan Baheti <[email protected]>
Co-authored-by: Dakshesh Jain <[email protected]>
Co-authored-by: Aaryan Khandelwal <[email protected]>
2023-09-01 16:42:30 +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;