rapharehap/next.config.js
2025-09-24 17:47:05 +05:30

15 lines
375 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export", // keep: needed for next export
trailingSlash: true,
images: {
unoptimized: true, // keep: for static export
},
swcMinify: true, // explicit SWC minify
experimental: {
forceSwcTransforms: true // use SWC only
}
};
module.exports = nextConfig;