mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-31 10:51:35 +00:00
16 lines
291 B
TypeScript
16 lines
291 B
TypeScript
import type { NextConfig } from "next";
|
|
import packageJson from './package.json';
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
generateBuildId: () => packageJson.version,
|
|
};
|
|
|
|
export default nextConfig;
|