vue.config.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. const path = require('path')
  2. const defaultSettings = require('./src/settings.js')
  3. function resolve(dir) {
  4. return path.join(__dirname, dir)
  5. }
  6. const name = defaultSettings.title || 'vue Admin Template' // page title
  7. // If your port is set to 80,
  8. // use administrator privileges to execute the command line.
  9. // For example, Mac: sudo npm run
  10. // You can change the port by the following methods:
  11. // port = 9528 npm run dev OR npm run dev --port = 9528
  12. const port = process.env.port || process.env.npm_config_port || 9528 // dev port
  13. // All configuration item explanations can be find in https://cli.vuejs.org/config/
  14. module.exports = {
  15. /**
  16. * You will need to set publicPath if you plan to deploy your site under a sub path,
  17. * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
  18. * then publicPath should be set to "/bar/".
  19. * In most cases please use '/' !!!
  20. * Detail: https://cli.vuejs.org/config/#publicpath
  21. */
  22. runtimeCompiler: true,
  23. publicPath: './',
  24. outputDir: 'dist',
  25. assetsDir: 'static',
  26. // lintOnSave: process.env.NODE_ENV === 'development',
  27. lintOnSave: false,
  28. productionSourceMap: false,
  29. parallel: false,
  30. devServer: {
  31. port,
  32. open: false,
  33. overlay: {
  34. warnings: false,
  35. errors: true
  36. },
  37. // before: require('./mock/mock-server.js'),
  38. proxy: {
  39. '/api': {
  40. // target: 'https://nsadminapi.tuanfengkeji.cn', // 正式
  41. target: 'https://nsadminapitest.tuanfengkeji.cn', // 测试
  42. // target: 'http://192.168.0.91:9103', // 平台端
  43. // target: 'http://192.168.0.110:9103', // 平台端(勇哥)
  44. changeOrigin: true,
  45. pathRewrite: {
  46. '^/api': ''
  47. }
  48. },
  49. '/tuan': {
  50. target: 'https://test.tuanfengkeji.cn/dts-app-api', // 测试
  51. changeOrigin: true,
  52. pathRewrite: {
  53. '^/tuan': ''
  54. }
  55. },
  56. '/adminapi': {
  57. target: 'https://nsadminapitest.tuanfengkeji.cn', // 测试
  58. // target: 'http://192.168.0.91:9103', // 平台端
  59. changeOrigin: true,
  60. pathRewrite: {
  61. '^/adminapi': ''
  62. }
  63. },
  64. '/': {
  65. // target: 'https://nsadminapitest.tuanfengkeji.cn', // 测试
  66. target: 'http://192.168.0.91:9103', // 平台端
  67. changeOrigin: true
  68. }
  69. }
  70. },
  71. configureWebpack: {
  72. // provide the app's title in webpack's name field, so that
  73. // it can be accessed in index.html to inject the correct title.
  74. name,
  75. resolve: {
  76. alias: {
  77. '@': resolve('src'),
  78. '@@': resolve('canvas-container')
  79. }
  80. }
  81. },
  82. // 配置全局样式变量
  83. css: {
  84. loaderOptions: {
  85. sass: {
  86. prependData: `@import "canvas-container/styles/index.scss";`
  87. }
  88. }
  89. },
  90. // 配置多页面入口
  91. pages: {
  92. index: {
  93. entry: 'src/main.js',
  94. template: 'public/index.html',
  95. filename: 'index.html',
  96. chunks: ['chunk-elementUI', 'chunk-vendors', 'chunk-libs', 'runtime', 'index']
  97. },
  98. canvas: {
  99. entry: 'canvas-container/main.js',
  100. template: 'public/canvas.html',
  101. filename: 'canvas.html',
  102. chunks: ['chunk-elementUI', 'chunk-vendors', 'chunk-libs', 'runtime', 'canvas']
  103. }
  104. },
  105. chainWebpack(config) {
  106. // it can improve the speed of the first screen, it is recommended to turn on preload
  107. // config.plugin('preload').tap(() => [
  108. // {
  109. // rel: 'preload',
  110. // // to ignore runtime.js
  111. // // https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171
  112. // fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/],
  113. // include: 'initial'
  114. // }
  115. // ])
  116. // when there are many pages, it will cause too many meaningless requests
  117. config.plugins.delete('prefetch')
  118. // set svg-sprite-loader
  119. config.module
  120. .rule('svg')
  121. .exclude.add(resolve('src/icons'))
  122. .end()
  123. config.module
  124. .rule('icons')
  125. .test(/\.svg$/)
  126. .include.add(resolve('src/icons'))
  127. .end()
  128. .use('svg-sprite-loader')
  129. .loader('svg-sprite-loader')
  130. .options({
  131. symbolId: 'icon-[name]'
  132. })
  133. .end()
  134. config
  135. .when(
  136. process.env.NODE_ENV !== 'development',
  137. (config) => {
  138. config
  139. .plugin('ScriptExtHtmlWebpackPlugin')
  140. .after('html')
  141. .use('script-ext-html-webpack-plugin', [ {
  142. // `runtime` must same as runtimeChunk name. default is `runtime`
  143. inline: /runtime\..*\.js$/
  144. } ])
  145. .end()
  146. config
  147. .optimization.splitChunks({
  148. chunks: 'all',
  149. cacheGroups: {
  150. libs: {
  151. name: 'chunk-libs',
  152. test: /[\\/]node_modules[\\/]/,
  153. priority: 10,
  154. chunks: 'initial' // only package third parties that are initially dependent
  155. },
  156. elementUI: {
  157. name: 'chunk-elementUI', // split elementUI into a single package
  158. priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
  159. test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
  160. },
  161. commons: {
  162. name: 'chunk-commons',
  163. test: resolve('src/components'), // can customize your rules
  164. minChunks: 3, // minimum common number
  165. priority: 5,
  166. reuseExistingChunk: true
  167. }
  168. }
  169. })
  170. // https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
  171. config.optimization.runtimeChunk('single')
  172. }
  173. )
  174. }
  175. }