mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-06-28 09:16:55 +00:00
27 lines
585 B
JavaScript
27 lines
585 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'
|
||
|
|
||
|
// https://vite.dev/config/
|
||
|
export default defineConfig({
|
||
|
base: "/static/client/dist",
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
vueDevTools(),
|
||
|
{
|
||
|
name: 'rename',
|
||
|
enforce: 'post',
|
||
|
generateBundle(options, bundle) {
|
||
|
bundle['index.html'].fileName = bundle['index.html'].fileName.replace('index.html', 'client.html')
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
},
|
||
|
}
|
||
|
})
|