rapharehap/next.config.js
2025-10-03 13:56:31 +05:30

17 lines
535 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export", // keep: needed for next export
trailingSlash: true,
images: {
unoptimized: true, // ✅ needed
},
swcMinify: true, // explicit SWC minify
// experimental: {
// forceSwcTransforms: true, // use SWC only
// modern: true, // ✅ enable modern build (ES6+ for modern browsers)
// polyfillsOptimization: true // ✅ remove unnecessary polyfills
// },
};
module.exports = nextConfig;