Reapply "Add tailwind and dev dependencies"

This reverts commit 6a1f043389.
This commit is contained in:
2025-11-02 13:20:05 -05:00
parent 6a1f043389
commit 1d2f184644
14 changed files with 1117 additions and 249 deletions

View File

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