/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, experimental: { images: { allowFutureImage: true, }, }, redirects: async () => { return [{ source: '/', destination: '/index', permanent: true, }]; } } module.exports = nextConfig