feat: init vite
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 9m29s

This commit is contained in:
Hewston Fox
2026-03-07 21:44:42 +02:00
parent 79a0465bb0
commit 06129b821e
16 changed files with 2520 additions and 90 deletions

10
src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)