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