This commit is contained in:
Donald Zou
2025-05-29 16:23:20 +08:00
parent e16435f4fc
commit 568da8cc64
27 changed files with 3529 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
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))
},
}
})