diff options
-rw-r--r-- | next.config.js (renamed from next.config.ts) | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/next.config.ts b/next.config.js index 742ad4f..cc28907 100644 --- a/next.config.ts +++ b/next.config.js @@ -1,6 +1,5 @@ -import { NextConfig } from 'next'; - -const nextConfig: NextConfig = { +/** @type {import('next').NextConfig} */ +const nextConfig = { reactStrictMode: true, experimental: { images: { @@ -16,4 +15,4 @@ const nextConfig: NextConfig = { } } -export default nextConfig; +module.exports = nextConfig |