This commit is contained in:
Donald Zou
2025-05-31 22:59:46 +08:00
parent df7f9f2b14
commit 6a6c1aa527
28 changed files with 376 additions and 16 deletions

View File

@@ -3,17 +3,32 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
import {proxy} from "./proxy.js";
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
{
name: 'rename',
enforce: 'post',
generateBundle(options, bundle) {
bundle['index.html'].fileName = "client.html"
}
}
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
server:{
proxy: {
'/api': proxy,
'/fileDownload':proxy
},
host: '0.0.0.0'
},
base: '/static/client/dist'
})