| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| reactStrictMode: true, | |
| transpilePackages: ['@hanzo/ui'], | |
| webpack: (config) => { | |
| config.resolve.extensions = ['.mjs', '.js', '.jsx', '.ts', '.tsx', '.json'] | |
| return config | |
| } | |
| } | |
| module.exports = nextConfig |