mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-10-05 00:36:18 +00:00
45 lines
876 B
JavaScript
45 lines
876 B
JavaScript
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";
|
|
|
|
|
|
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: {
|
|
'/client': proxy,
|
|
},
|
|
host: '0.0.0.0'
|
|
},
|
|
build: {
|
|
target: "es2022",
|
|
outDir: '../dist/WGDashboardClient',
|
|
rollupOptions: {
|
|
output: {
|
|
entryFileNames: `assets/[name]-[hash].js`,
|
|
chunkFileNames: `assets/[name]-[hash].js`,
|
|
assetFileNames: `assets/[name]-[hash].[ext]`
|
|
}
|
|
}
|
|
},
|
|
base: '/static/dist/WGDashboardClient'
|
|
})
|