vue.config.js 5.5 KB

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