vue.config.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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://nsadminapitest.tuanfengkeji.cn', // 测试
  41. // target: 'http://192.168.0.91:9103', // 平台端
  42. changeOrigin: true,
  43. pathRewrite: {
  44. '^/api': ''
  45. }
  46. },
  47. '/tuan': {
  48. target: 'https://test.tuanfengkeji.cn/dts-app-api', // 测试
  49. changeOrigin: true,
  50. pathRewrite: {
  51. '^/tuan': ''
  52. }
  53. },
  54. '/adminapi': {
  55. target: 'https://nsadminapitest.tuanfengkeji.cn', // 测试
  56. // target: 'http://192.168.0.91:9103', // 平台端
  57. changeOrigin: true,
  58. pathRewrite: {
  59. '^/adminapi': ''
  60. }
  61. },
  62. '/': {
  63. // target: 'https://nsadminapitest.tuanfengkeji.cn', // 测试
  64. target: 'http://192.168.0.91:9103', // 平台端
  65. changeOrigin: true
  66. }
  67. }
  68. },
  69. configureWebpack: {
  70. // provide the app's title in webpack's name field, so that
  71. // it can be accessed in index.html to inject the correct title.
  72. name,
  73. resolve: {
  74. alias: {
  75. '@': resolve('src'),
  76. '@@': resolve('canvas-container')
  77. }
  78. }
  79. },
  80. // 配置全局样式变量
  81. css: {
  82. loaderOptions: {
  83. sass: {
  84. prependData: `@import "canvas-container/styles/index.scss";`
  85. }
  86. }
  87. },
  88. // 配置多页面入口
  89. pages: {
  90. index: {
  91. entry: 'src/main.js',
  92. template: 'public/index.html',
  93. filename: 'index.html',
  94. chunks: ['chunk-elementUI', 'chunk-vendors', 'chunk-libs', 'runtime', 'index']
  95. },
  96. canvas: {
  97. entry: 'canvas-container/main.js',
  98. template: 'public/canvas.html',
  99. filename: 'canvas.html',
  100. chunks: ['chunk-elementUI', 'chunk-vendors', 'chunk-libs', 'runtime', 'canvas']
  101. }
  102. },
  103. chainWebpack(config) {
  104. // it can improve the speed of the first screen, it is recommended to turn on preload
  105. // config.plugin('preload').tap(() => [
  106. // {
  107. // rel: 'preload',
  108. // // to ignore runtime.js
  109. // // https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/cli-service/lib/config/app.js#L171
  110. // fileBlacklist: [/\.map$/, /hot-update\.js$/, /runtime\..*\.js$/],
  111. // include: 'initial'
  112. // }
  113. // ])
  114. // when there are many pages, it will cause too many meaningless requests
  115. config.plugins.delete('prefetch')
  116. // set svg-sprite-loader
  117. config.module
  118. .rule('svg')
  119. .exclude.add(resolve('src/icons'))
  120. .end()
  121. config.module
  122. .rule('icons')
  123. .test(/\.svg$/)
  124. .include.add(resolve('src/icons'))
  125. .end()
  126. .use('svg-sprite-loader')
  127. .loader('svg-sprite-loader')
  128. .options({
  129. symbolId: 'icon-[name]'
  130. })
  131. .end()
  132. config
  133. .when(
  134. process.env.NODE_ENV !== 'development',
  135. (config) => {
  136. config
  137. .plugin('ScriptExtHtmlWebpackPlugin')
  138. .after('html')
  139. .use('script-ext-html-webpack-plugin', [ {
  140. // `runtime` must same as runtimeChunk name. default is `runtime`
  141. inline: /runtime\..*\.js$/
  142. } ])
  143. .end()
  144. config
  145. .optimization.splitChunks({
  146. chunks: 'all',
  147. cacheGroups: {
  148. libs: {
  149. name: 'chunk-libs',
  150. test: /[\\/]node_modules[\\/]/,
  151. priority: 10,
  152. chunks: 'initial' // only package third parties that are initially dependent
  153. },
  154. elementUI: {
  155. name: 'chunk-elementUI', // split elementUI into a single package
  156. priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
  157. test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
  158. },
  159. commons: {
  160. name: 'chunk-commons',
  161. test: resolve('src/components'), // can customize your rules
  162. minChunks: 3, // minimum common number
  163. priority: 5,
  164. reuseExistingChunk: true
  165. }
  166. }
  167. })
  168. // https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
  169. config.optimization.runtimeChunk('single')
  170. }
  171. )
  172. }
  173. }