mirror of
https://github.com/XShengTech/MEGREZ.git
synced 2026-01-13 16:47:16 +08:00
37 lines
785 B
JavaScript
37 lines
785 B
JavaScript
import { fileURLToPath, URL } from 'node:url';
|
|
|
|
import { PrimeVueResolver } from '@primevue/auto-import-resolver';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import Components from 'unplugin-vue-components/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
build: {
|
|
outDir: '../routers/index/web',
|
|
},
|
|
optimizeDeps: {
|
|
noDiscovery: true
|
|
},
|
|
plugins: [
|
|
vue(),
|
|
Components({
|
|
resolvers: [PrimeVueResolver()]
|
|
})
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
}
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://127.0.0.1:34567/api',
|
|
// changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, '')
|
|
}
|
|
}
|
|
}
|
|
});
|