Files
traque/traque-front/next.config.mjs
2025-09-04 16:51:10 +02:00

20 lines
402 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
async redirects() {
return [
{
source: '/',
destination: '/admin',
permanent: true, // The browser will save the redirect in its cache, empty the cache to change the redirect
},
]
},
};
export default nextConfig;