link-stack/apps/link/next.config.js

31 lines
557 B
JavaScript
Raw Normal View History

2022-12-02 10:55:56 +00:00
module.exports = {
i18n: {
locales: ["en", "fr"],
defaultLocale: "en",
},
2023-02-22 13:05:52 +00:00
/*
2022-12-14 13:24:50 +01:00
async redirects() {
return [
{
source: "/zammad#ticket/zoom/:path*",
destination: "/ticket/:path*",
permanent: true,
},
];
},
2023-02-10 12:14:44 +00:00
async rewrites() {
2023-02-22 13:05:52 +00:00
return {
beforeFiles: [
{
source: "/assets/:path*",
destination: `/zammad/assets/:path*`,
},
{
source: "/api/v1/:path*",
destination: `/zammad/api/v1/:path*`,
},
],
};
}, */
2022-12-02 10:55:56 +00:00
};