fix(tailwindcss): tailwindcss works with vite, no custom theme

This commit is contained in:
JK-le-dev 2025-10-18 14:44:28 -05:00
commit 74ec515658
9 changed files with 36 additions and 118 deletions

View file

@ -1,8 +1,9 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import jsconfigPaths from "vite-jsconfig-paths";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), jsconfigPaths()],
plugins: [tailwindcss(), react(), jsconfigPaths()],
});