Spaces:
Running
Running
| import type { NextConfig } from "next"; | |
| import packageJson from "./package.json"; | |
| const nextConfig: NextConfig = { | |
| typescript: { | |
| ignoreBuildErrors: true, | |
| }, | |
| eslint: { | |
| ignoreDuringBuilds: true, | |
| }, | |
| transpilePackages: ["three"], | |
| generateBuildId: () => packageJson.version, | |
| }; | |
| export default nextConfig; | |