mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-20 05:12:54 +08:00
16 lines
330 B
JavaScript
16 lines
330 B
JavaScript
const withTM = require('next-transpile-modules')(['reaflow']);
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = withTM({
|
|
exportPathMap: () => ({
|
|
'/': { page: '/' },
|
|
'/editor': { page: '/editor' },
|
|
}),
|
|
trailingSlash: true,
|
|
experimental: {
|
|
esmExternals: 'loose'
|
|
}
|
|
});
|
|
|
|
module.exports = nextConfig;
|