Add dashboard UI updates and settings modal
This commit is contained in:
18
pikit-web/vite.config.js
Normal file
18
pikit-web/vite.config.js
Normal 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,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user