14 lines
321 B
TypeScript
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
|