diff options
Diffstat (limited to 'next.config.ts')
-rw-r--r-- | next.config.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..742ad4f --- /dev/null +++ b/next.config.ts @@ -0,0 +1,19 @@ +import { NextConfig } from 'next'; + +const nextConfig: NextConfig = { + reactStrictMode: true, + experimental: { + images: { + allowFutureImage: true, + }, + }, + redirects: async () => { + return [{ + source: '/', + destination: '/index', + permanent: true, + }]; + } +} + +export default nextConfig; |