Files
2026-02-06 14:22:35 +07:00

13 lines
272 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
unoptimized: true,
},
output: 'export',
trailingSlash: false,
assetPrefix: process.env.NEXT_EXPORT === 'true' ? './' : undefined,
};
export default nextConfig;