feat: add frontend setup with Tailwind CSS

This commit is contained in:
eligrinfeld
2025-01-06 21:25:03 -07:00
parent 7fa0e9dd9d
commit 79f26fce25
28 changed files with 6724 additions and 520 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;