vue.config.js 851 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. module.exports = {
  2. chainWebpack: config => {
  3. config
  4. .plugin('html')
  5. .tap(args => {
  6. args[0].title = '退役军人'
  7. return args
  8. })
  9. },
  10. css: {
  11. loaderOptions: {
  12. sass: {
  13. // 全局引入变量和 mixin
  14. prependData: `
  15. @import "@/assets/scss/variable.scss";
  16. @import "@/assets/scss/mixin.scss";
  17. `
  18. }
  19. }
  20. },
  21. devServer: {
  22. proxy: {
  23. [process.env.VUE_APP_BASE_API]: {
  24. target: `http://wx.dev.dazesoft.cn/veterans/teacher`,
  25. // target: `http://172.16.90.110:7200/teacher`,
  26. changeOrigin: true,
  27. pathRewrite: {
  28. ['^' + process.env.VUE_APP_BASE_API]: ''
  29. }
  30. }
  31. },
  32. disableHostCheck: true
  33. },
  34. // productionSourceMap: false,
  35. publicPath: process.env.NODE_ENV === 'production' ? './' : '/'
  36. }