gallery / next.config.js
Hanzo Dev
Initial commit: Hanzo Template Gallery with 8 professional templates using @hanzo /ui
7edc589
raw
history blame contribute delete
280 Bytes
/** @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