jsoncrack.com/next.config.js
2022-03-18 12:01:19 +03:00

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;