12345678910111213141516171819202122232425262728 |
- module.exports = {
- css: {
- loaderOptions: {
- sass: {
- // 全局引入变量和 mixin
- prependData: `
- @import "@/assets/scss/variable.scss";
- @import "@/assets/scss/mixin.scss";
- `
- }
- }
- },
- devServer: {
- proxy: {
- [process.env.VUE_APP_BASE_API]: {
- // target: `http://wx.hw.hongweisoft.com/veterans/company/`,
- target: `http://172.16.90.64:7200/company/`,
- changeOrigin: true,
- pathRewrite: {
- ['^' + process.env.VUE_APP_BASE_API]: ''
- }
- }
- },
- disableHostCheck: true
- },
- productionSourceMap: false,
- publicPath: process.env.NODE_ENV === 'production' ? '/' : '/'
- }
|