aboutsummaryrefslogtreecommitdiff
path: root/next.config.js
blob: 494d6fe3266ac6147b270a7379487b2ea2f51eec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/** @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