omg i made a mess again

This commit is contained in:
Pablo Martin 2025-05-21 00:52:41 +02:00
parent 7676c86c28
commit 1fdee24049
10 changed files with 791 additions and 72 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()],
});