vue.config.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. port: 3000,
  53. proxy: {
  54. /* '/api': {
  55. target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  56. ws: false,
  57. changeOrigin: true,
  58. pathRewrite: {
  59. '/jeecg-boot': '' //默认所有请求都加了jeecg-boot前缀,需要去掉
  60. }
  61. }, */
  62. '/jeecg-boot': {
  63. target: 'http://127.0.0.1:8090', // 请求本地 需要jeecg-boot后台项目
  64. // target: 'http://106.15.206.14:8087', // 测试环境
  65. // ws: false,
  66. changeOrigin: true
  67. }
  68. }
  69. },
  70. // devServer: {
  71. // assetsSubDirectory:'static',
  72. // assetsPublicPath:'./',
  73. // port: 3000,
  74. // proxy: {
  75. // /* '/api': {
  76. // target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  77. // ws: false,
  78. // changeOrigin: true,
  79. // pathRewrite: {
  80. // '/jeecg-boot': '' //默认所有请求都加了jeecg-boot前缀,需要去掉
  81. // }
  82. // }, */
  83. // '/jeecg-boot': {
  84. // // target: 'http://127.0.0.1:8090', // 请求本地 需要jeecg-boot后台项目
  85. // target: 'http://106.15.206.14:8087', // 测试环境
  86. // // ws: false,
  87. // changeOrigin: true
  88. // }
  89. // }
  90. // },
  91. // devServer: {
  92. // assetsSubDirectory:'static',
  93. // assetsPublicPath:'./',
  94. // port: 3000,
  95. // proxy: {
  96. // /* '/api': {
  97. // target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  98. // ws: false,
  99. // changeOrigin: true,
  100. // pathRewrite: {
  101. // '/jeecg-boot': '' //默认所有请求都加了jeecg-boot前缀,需要去掉
  102. // }
  103. // }, */
  104. // '/jeecg-boot': {
  105. // // target: 'http://127.0.0.1:8090', // 请求本地 需要jeecg-boot后台项目
  106. // target: 'http://192.168.1.158:8087', // 测试环境
  107. // // ws: false,
  108. // changeOrigin: true
  109. // }
  110. // }
  111. // },
  112. // devServer: {
  113. // assetsSubDirectory:'static',
  114. // assetsPublicPath:'./',
  115. // port: 3000,
  116. // proxy: {
  117. // /* '/api': {
  118. // target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  119. // ws: false,
  120. // changeOrigin: true,
  121. // pathRewrite: {
  122. // '/jeecg-boot': '' //默认所有请求都加了jeecg-boot前缀,需要去掉
  123. // }
  124. // }, */
  125. // '/jeecg-boot': {
  126. // // target: 'http://127.0.0.1:8090', // 请求本地 需要jeecg-boot后台项目
  127. // target: 'http://192.168.1.157:8087', // 测试环境
  128. // // ws: false,
  129. // changeOrigin: true
  130. // }
  131. // }
  132. // },
  133. lintOnSave: undefined
  134. // build:{
  135. // index:path.resolve(__dirname,'../dist/index.html'),
  136. // assetsRoot:path.resolve(__dirname,'../dist'),
  137. // assetsSubDirectory:'static',
  138. // assetsPublicPath:'./'
  139. // }
  140. }