minecraft-clone / next.config.ts
TomatitoToho's picture
Upload next.config.ts with huggingface_hub
f331bf4 verified
Raw
History Blame Contribute Delete
409 Bytes
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;