Files
shadow-gunbuilder-ai-proto/eslint.config.mjs
T
dstrawsb d9498f8aca
CI / test (push) Successful in 6s
upgrading nextjs to 15
2026-01-24 23:32:58 -05:00

11 lines
355 B
JavaScript

import { defineConfig } from "eslint/config";
import nextCoreWebVitals from "eslint-config-next/core-web-vitals";
import path from "node:path";
import { fileURLToPath } from "node:url";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
export default defineConfig([{
extends: [...nextCoreWebVitals],
}]);