initial vite project

This commit is contained in:
rei
2023-03-17 22:29:39 +01:00
parent 557749d1e6
commit 5b1cf06ec0
15 changed files with 965 additions and 0 deletions

7
vite.config.ts Normal file
View File

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