Initial commit and basic home page functions

This commit is contained in:
Matheus Albino
2024-06-26 14:33:06 -03:00
commit 3967eb67d5
14 changed files with 4616 additions and 0 deletions

8
vite.config.js Normal file
View File

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