Files
traque/server/traque-front/next.config.mjs
2026-03-04 18:36:06 +01:00

19 lines
263 B
JavaScript

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