13 lines
265 B
JavaScript
13 lines
265 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
import nextConfig from "eslint-config-next/core-web-vitals.js";
|
|
|
|
export default defineConfig([
|
|
nextConfig,
|
|
globalIgnores([
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
]),
|
|
]);
|