Add dashboard UI updates and settings modal

This commit is contained in:
Aaron
2025-12-10 18:51:31 -05:00
commit c85df728b7
54 changed files with 7151 additions and 0 deletions

18
pikit-web/vite.config.js Normal file
View File

@@ -0,0 +1,18 @@
import { defineConfig } from 'vite';
export default defineConfig({
root: '.',
server: {
host: true,
port: 4173,
proxy: {
// Forward API calls to the local Python API during dev so fetches
// return JSON instead of the Vite index.html shell.
'/api': 'http://127.0.0.1:4000',
},
},
preview: {
host: true,
port: 4173,
},
});