/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, async redirects() { return [ { source: "/intro", destination: "/", permanent: true, // 308 permanent redirect (H-11 / IA-02) }, ]; }, }; module.exports = nextConfig;