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