trackerdeq/next.config.ts

11 lines
173 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
devIndicators: false
};
export default nextConfig;