chores: cleanup; added: viteconfig

This commit is contained in:
2026-04-16 02:09:30 -04:00
parent 296979003d
commit 9b59f8672e
20 changed files with 8 additions and 1 deletions

View File

@@ -1 +0,0 @@
Collector starting → /home/anti/Tools/DECNET/decnet.log

View File

@@ -4,4 +4,12 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/ // https://vite.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://127.0.0.1:8000',
changeOrigin: true,
},
},
},
}) })