testing something...

This commit is contained in:
Donald Zou
2024-01-08 12:23:57 -05:00
parent 0c0bce9755
commit f671c992e1
30 changed files with 1319 additions and 826 deletions

View File

@@ -0,0 +1,21 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server:{
proxy: {
'/': 'http://178.128.231.4:10086/'
}
}
})