Files
2025-11-12 15:30:12 +01:00

14 lines
321 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
/* config options here */
eslint: {
// we have added a lint command to the package.json build script
// which is why we disable the default next lint (during builds) here
ignoreDuringBuilds: true,
},
}
export default nextConfig