Spaces:
Sleeping
Sleeping
| import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | |
| output: "standalone", | |
| typescript: { | |
| ignoreBuildErrors: true, | |
| }, | |
| reactStrictMode: false, | |
| // Transpile Three.js packages for proper bundling | |
| transpilePackages: ['three', '@react-three/fiber', '@react-three/drei'], | |
| // Empty turbopack config to silence the webpack warning | |
| turbopack: {}, | |
| }; | |
| export default nextConfig; | |