jsoncrack.com/next.config.js

12 lines
235 B
JavaScript
Raw Normal View History

2022-01-30 13:09:56 +03:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2022-02-03 19:56:16 +03:00
exportPathMap: () => ({
'/': { page: '/' },
'/editor': { page: '/editor' },
}),
2022-01-30 13:09:56 +03:00
reactStrictMode: true,
2022-02-03 19:56:16 +03:00
trailingSlash: true,
};
2022-01-30 13:09:56 +03:00
2022-02-03 19:56:16 +03:00
module.exports = nextConfig;