redirection de / vers /team

This commit is contained in:
Mathieu Oriol
2024-09-09 16:58:09 +02:00
parent 78530c7a38
commit cf96ea45d7

View File

@@ -1,8 +1,20 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
experimental: {
outputStandalone: true output: 'standalone',
}
async redirects() {
return [
{
source: '/',
destination: '/team',
permanent: true,
},
]
},
}; };
export default nextConfig; export default nextConfig;