link-stack/apps/metamigo-frontend/next.config.js
2023-03-15 12:17:43 +00:00

24 lines
503 B
JavaScript

module.exports = {
experimental: { esmExternals: "loose" },
async redirects() {
return [{ source: "/", destination: "/admin", permanent: true }];
},
async rewrites() {
return [
/*
{
source: "/api/v1/:path*",
destination: "http://localhost:3001/api/:path*",
},
*/
{
source: "/api/v1/:path*",
destination: "/api/proxy/:path*",
},
{
source: "/graphql",
destination: "/api/graphql",
},
];
},
};