Server heavy refactoring 3 (not functionnal)

This commit is contained in:
Sebastien Riviere
2026-03-04 18:36:06 +01:00
parent 8046feadb0
commit e1b6c0e0c5
50 changed files with 6576 additions and 687 deletions

View File

@@ -1,19 +1,18 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
output: 'standalone',
async redirects() {
return [
{
source: '/',
destination: '/admin',
permanent: false, // The browser will not save the redirect in its cache
},
]
},
async redirects() {
return [
{
source: '/',
destination: '/admin',
permanent: false,
},
]
},
};
export default nextConfig;