rapharehap/next.config.js
2025-09-24 22:14:39 +05:30

15 lines
364 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
}
};
module.exports = nextConfig;