Files
shihezi-employment-service/vite.config.js

21 lines
486 B
JavaScript
Raw Permalink Normal View History

2025-12-17 18:27:59 +08:00
import {
defineConfig
} from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
import viteInjectPopup from './vite-inject-popup.js'; // 你的自定义插件
export default defineConfig({
plugins: [
// 只保留这一个自定义插件,它只负责改 template 字符串
viteInjectPopup(),
uni(),
],
2025-12-28 19:48:00 +08:00
server: {
proxy: {
'/app':{
target: 'http://36.105.163.21:30083/rgpp/api',
changeOrigin: true,
}
}
}
2025-12-17 18:27:59 +08:00
});