Project structure update
This commit is contained in:
parent
86c616de0a
commit
e556cdceba
70 changed files with 4127 additions and 56 deletions
23
link/next.config.js
Normal file
23
link/next.config.js
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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: "/zammad/:path*",
|
||||
},
|
||||
],
|
||||
}),
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue