vue.config.js 2.9 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. 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. lintOnSave: undefined
  92. // build:{
  93. // index:path.resolve(__dirname,'../dist/index.html'),
  94. // assetsRoot:path.resolve(__dirname,'../dist'),
  95. // assetsSubDirectory:'static',
  96. // assetsPublicPath:'./'
  97. // }
  98. }