mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 14:26:37 -06:00
Major changes: - Upgrade Tailwind CSS from v3 to v4 with @tailwindcss/postcss - Remove deprecated Tailwind v3 configuration and PostCSS plugins - Upgrade Zod from v3 to v4 - Update React Markdown and other dependencies to latest versions - Remove @plaiceholder, @headlessui, and other unused dependencies - Replace SCSS with standard CSS globals - Add font packages (@fontsource-variable) for better typography - Consolidate Prettier configuration to .prettierrc - Remove legacy contact page and custom Payload SCSS - Add Mantine hooks and Lucide React for improved UI components
20 lines
449 B
JavaScript
20 lines
449 B
JavaScript
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"),
|
|
{
|
|
ignores: [".next/**", "out/**", "build/**", "next-env.d.ts"],
|
|
},
|
|
];
|
|
|
|
export default eslintConfig;
|