diff --git a/frontend/next.config.js b/frontend/next.config.js index 45325a1..1d83b3e 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -46,3 +46,14 @@ module.exports = { return config; }, }; + +module.exports = { + async rewrites() { + return [ + { + source: "/:path*", + destination: "https://backend.sef.today/:path*", // Proxy to Backend + }, + ]; + }, +};