tremor-tracker/next.config.ts

10 lines
151 B
TypeScript
Raw Permalink Normal View History

2025-02-24 12:37:15 +00:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-06-08 17:41:40 +01:00
typescript: {
ignoreBuildErrors: true,
},
2025-02-24 12:37:15 +00:00
};
export default nextConfig;