vue.config.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. 'use strict'
  2. const path = require('path')
  3. const defaultSettings = require('./src/settings.js')
  4. const CompressionWebpackPlugin = require('compression-webpack-plugin')
  5. const webpack = require('webpack')
  6. function resolve(dir) {
  7. return path.join(__dirname, dir)
  8. }
  9. const name = defaultSettings.title || '登录系统' // page title
  10. const BASE_URL = process.env.NODE_ENV === 'production' ? '' : 'http://192.168.100.204:1111'
  11. // const BASE_URL = process.env.NODE_ENV === 'production' ? '' : 'http://xrty.vipgz4.idcfengye.com'
  12. // const BASE_URL = process.env.NODE_ENV === 'production' ? '' : 'http://192.168.2.231:1111'
  13. const port = 8031
  14. // const port = process.env.port || process.env.npm_config_port || 9528 // dev port
  15. module.exports = {
  16. /**
  17. * 如果计划在子路径下部署站点,则需要设置publicPath
  18. */
  19. publicPath: '/',
  20. outputDir: 'dist',
  21. assetsDir: 'static',
  22. // lintOnSave: process.env.NODE_ENV === 'development',
  23. lintOnSave: false,
  24. productionSourceMap: false, // 生产环境是否生成 sourceMap 文件
  25. devServer: {
  26. port: port, // 端口
  27. open: true, // 自动开启浏览器
  28. compress: false, // 开启压缩
  29. overlay: {
  30. warnings: false,
  31. errors: false
  32. },
  33. proxy: {
  34. '/backstage': {
  35. // target: 'http://192.168.2.231:1111', // 修改后台接口地址
  36. // target: 'http://xrty.vipgz4.idcfengye.com',
  37. target: 'http://192.168.100.204:1111',
  38. changeOrigin: true,
  39. pathRewrite: {
  40. '^/backstage': ''
  41. }
  42. },
  43. '/javaapi': {
  44. // target: 'http://192.168.2.231:1111', // 修改后台接口地址
  45. // target: 'http://xrty.vipgz4.idcfengye.com',
  46. target: 'http://125.64.42.165:1111',
  47. changeOrigin: true,
  48. pathRewrite: {
  49. '^/javaapi': ''
  50. }
  51. },
  52. '/arcgisapi': {
  53. // target: 'http://192.168.2.231:1111', // 修改后台接口地址
  54. // target: 'http://xrty.vipgz4.idcfengye.com',
  55. target: 'http://125.64.42.165:6080',
  56. changeOrigin: true,
  57. pathRewrite: {
  58. '^/arcgisapi': ''
  59. }
  60. }
  61. // '/omsweb': { // 自定义 接口前缀
  62. // target: 'http://58.17.241.6:1212', // 这里可以跟随项目实际部署服务器来
  63. // changeOrigin: true,
  64. // pathRewrite: {
  65. // '^/omsweb': ''
  66. // }
  67. // }
  68. }
  69. // before: require('./mock/mock-server.js')
  70. },
  71. css: {
  72. // 是否使用css分离插件 ExtractTextPlugin
  73. extract: false,
  74. // 开启 CSS source maps?
  75. // sourceMap: false,
  76. // css预设器配置项
  77. loaderOptions: {
  78. // pass options to sass-loader
  79. sass: {
  80. // 引入全局变量样式,@使我们设置的别名,执行src目录
  81. data: `@import "@/styles/index.scss";`
  82. }
  83. },
  84. // 启用 CSS modules for all css / pre-processor files.
  85. modules: false
  86. },
  87. configureWebpack: {
  88. name: name,
  89. resolve: {
  90. alias: {
  91. '@': resolve('src'),
  92. 'staticPub': resolve('public')
  93. }
  94. },
  95. // devtool: '#eval-source-map',
  96. plugins: [// 压缩代码
  97. new CompressionWebpackPlugin(
  98. {
  99. filename: '[path].gz[query]',
  100. algorithm: 'gzip',
  101. test: /\.js$|\.html$|\.json$|\.css/,
  102. threshold: 0, // 只有大小大于该值的资源会被处理
  103. minRatio: 0.8, // 只有压缩率小于这个值的资源才会被处理
  104. deleteOriginalAssets: false // 删除原文件
  105. }
  106. ),
  107. new webpack.ProvidePlugin(
  108. {
  109. $: 'jquery',
  110. jQuery: 'jquery',
  111. 'windows.jQuery': 'jquery'
  112. }
  113. )
  114. ]
  115. },
  116. chainWebpack(config) {
  117. config.externals({ './cptable': 'var cptable' })
  118. // 删除预加载
  119. config.plugins.delete('preload')
  120. config.plugins.delete('prefetch')
  121. // 设置 svg-sprite-loader
  122. config.module
  123. .rule('svg')
  124. .exclude.add(resolve('src/icons'))
  125. .end()
  126. config.module
  127. .rule('icons')
  128. .test(/\.svg$/)
  129. .include.add(resolve('src/icons'))
  130. .end()
  131. .use('svg-sprite-loader')
  132. .loader('svg-sprite-loader')
  133. .options({
  134. symbolId: 'icon-[name]'
  135. })
  136. .end()
  137. // 设置保留空白
  138. config.module
  139. .rule('vue')
  140. .use('vue-loader')
  141. .loader('vue-loader')
  142. .tap(options => {
  143. options.compilerOptions.preserveWhitespace = true
  144. return options
  145. })
  146. .end()
  147. config
  148. .when(process.env.NODE_ENV === 'development',
  149. config => config.devtool('cheap-source-map')
  150. )
  151. config
  152. .when(process.env.NODE_ENV !== 'development',
  153. config => {
  154. config
  155. .plugin('ScriptExtHtmlWebpackPlugin')
  156. .after('html')
  157. .use('script-ext-html-webpack-plugin', [{
  158. // `runtime`必须与runtimeChunk名称相同。默认值为“runtime”`
  159. inline: /runtime\..*\.js$/
  160. }])
  161. .end()
  162. // 分割代码
  163. config
  164. .optimization.splitChunks({
  165. chunks: 'all',
  166. cacheGroups: {
  167. libs: {
  168. name: 'chunk-libs',
  169. test: /[\\/]node_modules[\\/]/,
  170. priority: 10,
  171. chunks: 'initial' // 仅打包最初依赖的第三方
  172. },
  173. elementUI: {
  174. name: 'chunk-elementUI', // 将elementUI拆分为一个包
  175. priority: 20, // 重量必须大于libs和app,否则将打包成libs或app
  176. test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // 为了适应cnpm
  177. },
  178. commons: {
  179. name: 'chunk-commons',
  180. test: resolve('src/components'), // 可以自定义规则
  181. minChunks: 3, // 最小公共数
  182. priority: 5,
  183. reuseExistingChunk: true
  184. }
  185. }
  186. })
  187. config.optimization.runtimeChunk('single')
  188. }
  189. )
  190. }
  191. }