diff --git a/traque-front/next.config.mjs b/traque-front/next.config.mjs index 7ea2c19..f75af37 100644 --- a/traque-front/next.config.mjs +++ b/traque-front/next.config.mjs @@ -1,8 +1,20 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - experimental: { - outputStandalone: true - } + + output: 'standalone', + + async redirects() { + return [ + { + source: '/', + destination: '/team', + permanent: true, + }, + ] + }, + }; + + export default nextConfig;