vue.config.js 891 B

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