link-stack/apps/link/next.config.js
2023-03-07 14:09:49 +00:00

20 lines
353 B
JavaScript

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