vue.config.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. const path = require('path')
  2. const CompressionPlugin = require('compression-webpack-plugin')
  3. function resolve(dir) {
  4. return path.join(__dirname, dir)
  5. }
  6. const webpack = require('webpack')
  7. // module.exports = {
  8. // configureWebpack: {
  9. // plugins: [
  10. // new webpack.ProvidePlugin({
  11. // $: "jquery",
  12. // jQuery: "jquery",
  13. // "window.jQuery": "jquery",
  14. // "window.$": "jquery",
  15. // Popper: ["popper.js", "default"]
  16. // })
  17. // ]
  18. // }
  19. // },
  20. // vue.config.js
  21. module.exports = {
  22. // jquery本地化
  23. configureWebpack: {
  24. plugins: [
  25. new webpack.ProvidePlugin({
  26. $: 'jquery',
  27. jQuery: 'jquery',
  28. 'window.jQuery': 'jquery',
  29. 'window.$': 'jquery',
  30. Popper: ['popper.js', 'default']
  31. })
  32. ]
  33. },
  34. /*
  35. Vue-cli3:
  36. Crashed when using Webpack `import()` #2463
  37. https://github.com/vuejs/vue-cli/issues/2463
  38. */
  39. // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
  40. productionSourceMap: false,
  41. // qiankuan打包时放开
  42. // outputDir: "../dist/main",
  43. // 多入口配置
  44. // pages: {
  45. // index: {
  46. // entry: 'src/main.js',
  47. // template: 'public/index.html',
  48. // filename: 'index.html',
  49. // }
  50. // },
  51. // 打包app时放开该配置
  52. // publicPath:'/',
  53. // configureWebpack: config => {
  54. // // 生产环境取消 console.log
  55. // if (process.env.NODE_ENV === 'production') {
  56. // config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
  57. // }
  58. // },
  59. chainWebpack: (config) => {
  60. config.resolve.alias
  61. .set('@$', resolve('src'))
  62. .set('@api', resolve('src/api'))
  63. .set('@assets', resolve('src/assets'))
  64. .set('@comp', resolve('src/components'))
  65. .set('@views', resolve('src/views'))
  66. // 生产环境,开启js\css压缩
  67. if (process.env.NODE_ENV === 'production') {
  68. config.plugin('compressionPlugin').use(new CompressionPlugin({
  69. test: /\.(js|css|less)$/, // 匹配文件名
  70. threshold: 10240, // 对超过10k的数据压缩
  71. deleteOriginalAssets: false // 不删除源文件
  72. }))
  73. }
  74. // 配置 webpack 识别 markdown 为普通的文件
  75. config.module
  76. .rule('markdown')
  77. .test(/\.md$/)
  78. .use()
  79. .loader('file-loader')
  80. .end()
  81. // 编译vxe-table包里的es6代码,解决IE11兼容问题
  82. config.module
  83. .rule('vxe')
  84. .test(/\.js$/)
  85. .include
  86. .add(resolve('node_modules/vxe-table'))
  87. .add(resolve('node_modules/vxe-table-plugin-antd'))
  88. .end()
  89. .use()
  90. .loader('babel-loader')
  91. .end()
  92. },
  93. css: {
  94. loaderOptions: {
  95. less: {
  96. modifyVars: {
  97. /* less 变量覆盖,用于自定义 ant design 主题 */
  98. 'primary-color': '#1890FF',
  99. 'link-color': '#1890FF',
  100. 'border-radius-base': '4px'
  101. },
  102. javascriptEnabled: true
  103. }
  104. }
  105. },
  106. devServer: {
  107. port: 3000,
  108. // hot: true,
  109. // disableHostCheck: true,
  110. // overlay: {
  111. // warnings: false,
  112. // errors: true,
  113. // },
  114. // headers: {
  115. // 'Access-Control-Allow-Origin': '*',
  116. // },
  117. proxy: {
  118. /* '/api': {
  119. target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  120. ws: false,
  121. changeOrigin: true,
  122. pathRewrite: {
  123. '/jeecg-boot': '' //默认所有请求都加了jeecg-boot前缀,需要去掉
  124. }
  125. }, */
  126. /* 注意:jeecgboot前端做了改造,此处不需要配置跨域和后台接口(只需要改.env相关配置文件即可)
  127. issues/3462 很多人此处做了配置,导致刷新前端404问题,请一定注意 */
  128. '/jeecg-boot': {
  129. target: 'http://localhost:8080',
  130. // target: 'http://localhost:8080',
  131. ws: false,
  132. changeOrigin: true
  133. }
  134. }
  135. },
  136. lintOnSave: undefined
  137. }