aboutsummaryrefslogtreecommitdiff
path: root/next.config.js
blob: cc28907e69498760e527dc04531c883a677c5ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  experimental: {
    images: {
      allowFutureImage: true,
    },
  },
  redirects: async () => {
    return [{
      source: '/',
      destination: '/index',
      permanent: true,
    }];
  }
}

module.exports = nextConfig