zip-van/next.config.js
2025-09-05 22:59:34 +05:30

12 lines
212 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "export",
trailingSlash: true,
images: {
unoptimized: true,
},
}
module.exports = nextConfig