This commit is contained in:
2022-07-18 22:57:33 +02:00
parent 86cc2ea889
commit ea61ba9ed7
17 changed files with 1050 additions and 9 deletions

7
src/web/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()]
})