mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-20 05:12:54 +08:00
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
exportPathMap: () => ({
|
|
'/': { page: '/' },
|
|
'/editor': { page: '/editor' },
|
|
}),
|
|
reactStrictMode: true,
|
|
trailingSlash: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|