Uploaded the default vite template to the webui folder

This commit is contained in:
2024-02-13 18:29:34 +01:00
parent 110d66d32d
commit 633feb0be2
13 changed files with 6168 additions and 0 deletions

7
webui/vite.config.js 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()],
})