next.config.js 336 B

1234567891011121314151617
  1. const withTM = require("next-transpile-modules")(["reaflow"]);
  2. const nextConfig = withTM({
  3. exportPathMap: () => ({
  4. "/": { page: "/" },
  5. "/editor": { page: "/editor" },
  6. }),
  7. experimental: {
  8. esmExternals: "loose",
  9. },
  10. compiler: {
  11. styledComponents: true,
  12. swcMinify: true,
  13. },
  14. });
  15. module.exports = nextConfig;