nicholas/storage-manager#1: use tailwind; implement edit, delete, create boxes and items

This commit is contained in:
2025-04-09 19:22:54 -05:00
parent d00615b197
commit b031ce4fde
23 changed files with 971 additions and 613 deletions
+5 -1
View File
@@ -1,7 +1,11 @@
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(),
],
})