vue.config.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. const path = require('path')
  2. const CompressionPlugin = require("compression-webpack-plugin")
  3. function resolve(dir) {
  4. return path.join(__dirname, dir)
  5. }
  6. // vue.config.js
  7. module.exports = {
  8. //devtool调试用,生产可以去掉
  9. configureWebpack: {
  10. devtool: 'source-map',
  11. },
  12. /*
  13. Vue-cli3:
  14. Crashed when using Webpack `import()` #2463
  15. https://github.com/vuejs/vue-cli/issues/2463
  16. */
  17. // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
  18. productionSourceMap: false,
  19. // 多入口配置
  20. // pages: {
  21. // index: {
  22. // entry: 'src/main.js',
  23. // template: 'public/index.html',
  24. // filename: 'index.html',
  25. // }
  26. // },
  27. //打包app时放开该配置
  28. //publicPath:'./',
  29. configureWebpack: config => {
  30. //生产环境取消 console.log
  31. if (process.env.NODE_ENV === 'production') {
  32. config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
  33. }
  34. },
  35. chainWebpack: (config) => {
  36. config.resolve.alias
  37. .set('@$', resolve('src'))
  38. .set('@api', resolve('src/api'))
  39. .set('@assets', resolve('src/assets'))
  40. .set('@comp', resolve('src/components'))
  41. .set('@views', resolve('src/views'))
  42. //生产环境,开启js\css压缩
  43. if (process.env.NODE_ENV === 'production') {
  44. config.plugin('compressionPlugin').use(new CompressionPlugin({
  45. test: /\.(js|css|less)$/, // 匹配文件名
  46. threshold: 10240, // 对超过10k的数据压缩
  47. deleteOriginalAssets: false // 不删除源文件
  48. }))
  49. }
  50. // 配置 webpack 识别 markdown 为普通的文件
  51. config.module
  52. .rule('markdown')
  53. .test(/\.md$/)
  54. .use()
  55. .loader('file-loader')
  56. .end()
  57. // 编译vxe-table包里的es6代码,解决IE11兼容问题
  58. config.module
  59. .rule('vxe')
  60. .test(/\.js$/)
  61. .include
  62. .add(resolve('node_modules/vxe-table'))
  63. .add(resolve('node_modules/vxe-table-plugin-antd'))
  64. .end()
  65. .use()
  66. .loader('babel-loader')
  67. .end()
  68. },
  69. configureWebpack: (config) => {
  70. if (process.env.NODE_ENV === 'production') {// 为生产环境修改配置...
  71. config.mode = 'production';
  72. config["performance"] = {//打包文件大小配置
  73. "maxEntrypointSize": 15000000,
  74. "maxAssetSize": 30000000
  75. }
  76. }
  77. },
  78. css: {
  79. loaderOptions: {
  80. less: {
  81. modifyVars: {
  82. /* less 变量覆盖,用于自定义 ant design 主题 */
  83. 'primary-color': '#1890FF',
  84. 'link-color': '#1890FF',
  85. 'border-radius-base': '4px',
  86. },
  87. javascriptEnabled: true,
  88. }
  89. }
  90. },
  91. devServer: {
  92. port: 9888,
  93. proxy: {
  94. /* '/api': {
  95. target: 'https://mock.ihx.me/mock/5baf3052f7da7e07e04a5116/antd-pro', //mock API接口系统
  96. ws: false,
  97. changeOrigin: true,
  98. pathRewrite: {
  99. '/nbcio-boot': '' //默认所有请求都加了nbcio-boot前缀,需要去掉
  100. }
  101. },*/
  102. '/nbcio-boot': {
  103. target: 'http://localhost:9888', //请求本地 需要nbcio-boot后台项目
  104. ws: false,
  105. changeOrigin: true
  106. },
  107. }
  108. },
  109. lintOnSave: undefined
  110. }