vue.config.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. const path = require('path')
  2. function resolve (dir) {
  3. return path.join(__dirname, dir)
  4. }
  5. // vue.config.js
  6. module.exports = {
  7. /*
  8. Vue-cli3:
  9. Crashed when using Webpack `import()` #2463
  10. https://github.com/vuejs/vue-cli/issues/2463
  11. */
  12. // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
  13. productionSourceMap: false,
  14. // 打包app时放开该配置
  15. // publicPath:'./',
  16. configureWebpack: config => {
  17. // 生产环境取消 console.log
  18. if (process.env.NODE_ENV === 'production') {
  19. config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
  20. }
  21. },
  22. chainWebpack: config => {
  23. config.resolve.alias
  24. .set('@$', resolve('src'))
  25. .set('@api', resolve('src/api'))
  26. .set('@assets', resolve('src/assets'))
  27. .set('@comp', resolve('src/components'))
  28. .set('@views', resolve('src/views'))
  29. .set('@layout', resolve('src/layout'))
  30. // 配置 webpack 识别 markdown 为普通的文件
  31. config.module
  32. .rule('markdown')
  33. .test(/\.md$/)
  34. .use()
  35. .loader('file-loader')
  36. .end()
  37. },
  38. css: {
  39. loaderOptions: {
  40. less: {
  41. modifyVars: {
  42. /* less 变量覆盖,用于自定义 ant design 主题 */
  43. 'primary-color': '#1890FF',
  44. 'link-color': '#1890FF',
  45. 'border-radius-base': '4px'
  46. },
  47. javascriptEnabled: true
  48. }
  49. }
  50. },
  51. devServer: {
  52. open: true, // 自动打开浏览器
  53. port: 3000,
  54. proxy: {
  55. /* '/api': {
  56. target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  57. ws: false,
  58. changeOrigin: true,
  59. pathRewrite: {
  60. '/jeecg-boot': '' //默认所有请求都加了jeecg-boot前缀,需要去掉
  61. }
  62. }, */
  63. '/jeecg-boot': {
  64. target: 'http://127.0.0.1:8090', // 请求本地 需要jeecg-boot后台项目
  65. // target: 'http://106.15.206.14:8087', // 测试环境
  66. // ws: false,
  67. changeOrigin: true
  68. }
  69. }
  70. },
  71. // devServer: {
  72. // assetsSubDirectory:'static',
  73. // assetsPublicPath:'./',
  74. // port: 3000,
  75. // proxy: {
  76. // /* '/api': {
  77. // target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  78. // ws: false,
  79. // changeOrigin: true,
  80. // pathRewrite: {
  81. // '/jeecg-boot': '' //默认所有请求都加了jeecg-boot前缀,需要去掉
  82. // }
  83. // }, */
  84. // '/jeecg-boot': {
  85. // // target: 'http://127.0.0.1:8090', // 请求本地 需要jeecg-boot后台项目
  86. // target: 'http://106.15.206.14:8087', // 测试环境
  87. // // ws: false,
  88. // changeOrigin: true
  89. // }
  90. // }
  91. // },
  92. lintOnSave: undefined
  93. // build:{
  94. // index:path.resolve(__dirname,'../dist/index.html'),
  95. // assetsRoot:path.resolve(__dirname,'../dist'),
  96. // assetsSubDirectory:'static',
  97. // assetsPublicPath:'./'
  98. // }
  99. }