mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-20 05:12:54 +08:00
18 lines
336 B
JavaScript
18 lines
336 B
JavaScript
const withTM = require("next-transpile-modules")(["reaflow"]);
|
|
|
|
const nextConfig = withTM({
|
|
exportPathMap: () => ({
|
|
"/": { page: "/" },
|
|
"/editor": { page: "/editor" },
|
|
}),
|
|
experimental: {
|
|
esmExternals: "loose",
|
|
},
|
|
compiler: {
|
|
styledComponents: true,
|
|
swcMinify: true,
|
|
},
|
|
});
|
|
|
|
module.exports = nextConfig;
|