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]>
14 lines
277 B
JavaScript
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;
|