next.config.js 235 B

1234567891011
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. exportPathMap: () => ({
  4. '/': { page: '/' },
  5. '/editor': { page: '/editor' },
  6. }),
  7. reactStrictMode: true,
  8. trailingSlash: true,
  9. };
  10. module.exports = nextConfig;