1
0
Fork 0

Continue to refactor the UI and APIs :)

This commit is contained in:
Donald Zou 2024-01-11 13:46:08 -05:00
parent e6e070d89e
commit 7cb1301e80
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -15,4 +15,5 @@ log/**
release/*
src/db/wgdashboard.db
.jshintrc
node_modules/**
node_modules/**
*/proxy.js

View File

@ -28,3 +28,4 @@ coverage
*.sw?
*.tsbuildinfo
proxy.js

View File

@ -1,6 +1,7 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import {proxy} from "./proxy.js";
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
@ -15,7 +16,7 @@ export default defineConfig({
},
server:{
proxy: {
'/api': 'http://178.128.231.4:10086'
'/api': proxy
}
}
})