Files
2026-01-27 15:48:29 +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;