12345678910111213141516171819 |
- const withTM = require("next-transpile-modules")(["reaflow"]);
- const nextConfig = withTM({
- reactStrictMode: true,
- exportPathMap: () => ({
- "/": { page: "/" },
- "/editor": { page: "/editor" },
- }),
- experimental: {
- esmExternals: "loose",
- outputStandalone: true,
- },
- compiler: {
- styledComponents: true,
- swcMinify: true,
- },
- });
- module.exports = nextConfig;
|