mirror of
https://github.com/dyzulk/trustlab.git
synced 2026-01-26 05:25:36 +07:00
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
// eslint.config.mjs
|
|
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
import nextConfig from 'eslint-config-next/core-web-vitals'
|
|
|
|
export default defineConfig([
|
|
...nextConfig,
|
|
globalIgnores([
|
|
'.next/**',
|
|
'out/**',
|
|
'build/**',
|
|
'next-env.d.ts'
|
|
]),
|
|
])
|