jsoncrack.com/next.config.js
2022-02-03 21:05:31 +03:00

12 lines
235 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
exportPathMap: () => ({
'/': { page: '/' },
'/editor': { page: '/editor' },
}),
reactStrictMode: true,
trailingSlash: true,
};
module.exports = nextConfig;