13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|