- Starting point of converting old site mand in HTML and PHP to React.js
This commit is contained in:
2025-07-02 10:23:00 -03:00
parent 4c8088ecc6
commit d706d846d5
17 changed files with 3699 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()]
})