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