next.config.js (301B)
1 /** @type {import('next').NextConfig} */ 2 const nextConfig = { 3 output: 'export', 4 reactStrictMode: true, 5 // Build `/src/pages/example/index.tsx` to `out/example/index.html` instead of `out/example.html` 6 trailingSlash: true, 7 images: { 8 unoptimized: true, 9 }, 10 } 11 12 module.exports = nextConfig