aboutsummaryrefslogtreecommitdiff
path: root/next.config.js
blob: 63fbc33974ae075ada6da0ecd21e0aa8c8388d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  experimental: {
    images: {
      allowFutureImage: true,
    },
  },
}

module.exports = nextConfig