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