update readme wit release doc

This commit is contained in:
Patrick
2025-08-19 12:50:10 +02:00
parent 68331fc639
commit ffa3aeb4fc
18 changed files with 3258 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
});
const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
];
export default eslintConfig;