Files
traque/traque-front/next.config.mjs
2024-09-09 16:58:09 +02:00

21 lines
311 B
JavaScript

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