| | |
| | | // 本地跨域代理 https://cn.vitejs.dev/config/server-options.html#server-proxy |
| | | proxy: { |
| | | "/api": { |
| | | // 这里填写后端地址 |
| | | target: "http://192.168.0.36:5005", |
| | | // 这里填写后端地址http://114.132.78.38:8096 http://192.168.0.36:5005 |
| | | target: "http://192.168.18.52:5005", |
| | | changeOrigin: true, |
| | | rewrite: path => path.replace(/^\/api/, "") |
| | | } |
| | |
| | | } |
| | | }, |
| | | plugins: getPluginsList(VITE_CDN, VITE_COMPRESSION), |
| | | css: { |
| | | preprocessorOptions: { |
| | | scss: { |
| | | // 自动导入定制化样式进行文件覆盖 |
| | | additionalData: `@use "@/style/element-plus-new.scss" as *;` |
| | | } |
| | | } |
| | | }, |
| | | // https://cn.vitejs.dev/config/dep-optimization-options.html#dep-optimization-options |
| | | optimizeDeps: { |
| | | include, |