add web interface example

This commit is contained in:
croissant
2025-11-02 20:06:49 +01:00
committed by Michel Aractingi
parent e2c00f6ed8
commit fff719cb4f
10 changed files with 4088 additions and 0 deletions
@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
strictPort: false,
host: true,
open: false
},
build: {
outDir: 'dist',
sourcemap: true
}
})