mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-28 01:30:17 +01:00
Restructuration of the project folders
This commit is contained in:
19
server/traque-front/next.config.mjs
Normal file
19
server/traque-front/next.config.mjs
Normal file
@@ -0,0 +1,19 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
|
||||
const nextConfig = {
|
||||
|
||||
output: 'standalone',
|
||||
|
||||
async redirects() {
|
||||
return [
|
||||
{
|
||||
source: '/',
|
||||
destination: '/admin',
|
||||
permanent: false, // The browser will not save the redirect in its cache
|
||||
},
|
||||
]
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
Reference in New Issue
Block a user