25 lines
415 B
JavaScript
25 lines
415 B
JavaScript
module.exports = {
|
|
i18n: {
|
|
locales: ["en", "fr"],
|
|
defaultLocale: "en",
|
|
},
|
|
/*
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: "/zammad#ticket/zoom/:path*",
|
|
destination: "/ticket/:path*",
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
*/
|
|
rewrites: async () => ({
|
|
fallback: [
|
|
{
|
|
source: "/:path*",
|
|
destination: "/api/proxy/:path*",
|
|
},
|
|
],
|
|
}),
|
|
};
|