File size: 322 Bytes
8a37195
28ef794
8a37195
 
 
 
 
 
 
 
39baaef
8a37195
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;