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

16 lines
286 B
JavaScript

module.exports = {
rewrites: async () => ({
beforeFiles: [
{
source: "/#ticket/zoom/:path*",
destination: "/ticket/:path*",
},
],
fallback: [
{
source: "/:path*",
destination: "/api/proxy/:path*",
},
],
}),
};