12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
output: 'standalone',
|
|
}
|
|
|
|
export default nextConfig
|