Files
lerobot-clone/lerobot/html_dataset_visualizer/next.config.ts

16 lines
291 B
TypeScript
Raw Normal View History

2025-04-29 17:07:25 +01:00
import type { NextConfig } from "next";
2025-06-09 18:47:30 +02:00
import packageJson from './package.json';
2025-04-29 17:07:25 +01:00
const nextConfig: NextConfig = {
2025-06-10 17:01:55 +02:00
2025-04-29 17:07:25 +01:00
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
2025-06-09 18:47:30 +02:00
generateBuildId: () => packageJson.version,
2025-04-29 17:07:25 +01:00
};
export default nextConfig;