vue.config.js 694 B

12345678910111213141516171819202122232425262728
  1. module.exports = {
  2. css: {
  3. loaderOptions: {
  4. sass: {
  5. // 全局引入变量和 mixin
  6. prependData: `
  7. @import "@/assets/scss/variable.scss";
  8. @import "@/assets/scss/mixin.scss";
  9. `
  10. }
  11. }
  12. },
  13. devServer: {
  14. proxy: {
  15. [process.env.VUE_APP_BASE_API]: {
  16. // target: `http://wx.hw.hongweisoft.com/veterans/company/`,
  17. target: `http://172.16.90.64:7200/company/`,
  18. changeOrigin: true,
  19. pathRewrite: {
  20. ['^' + process.env.VUE_APP_BASE_API]: ''
  21. }
  22. }
  23. },
  24. disableHostCheck: true
  25. },
  26. productionSourceMap: false,
  27. publicPath: process.env.NODE_ENV === 'production' ? '/' : '/'
  28. }