vue.config.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. "use strict";
  2. const path = require("path");
  3. const defaultSettings = require("./src/settings.js");
  4. const webpack = require("webpack");
  5. function resolve(dir) {
  6. return path.join(__dirname, dir);
  7. }
  8. const name = defaultSettings.title || "zxkcadmin"; // page title
  9. // If your port is set to 80,
  10. // use administrator privileges to execute the command line.
  11. // For example, Mac: sudo npm run
  12. // You can change the port by the following methods:
  13. // port = 9528 npm run dev OR npm run dev --port = 9528
  14. const port = process.env.port || process.env.npm_config_port || 7000; // dev port
  15. // All configuration item explanations can be find in https://cli.vuejs.org/config/
  16. module.exports = {
  17. /**
  18. * You will need to set publicPath if you plan to deploy your site under a sub path,
  19. * for example GitHub Pages. If you plan to deploy your site to https://foo.github.io/bar/,
  20. * then publicPath should be set to "/bar/".
  21. * In most cases please use '/' !!!
  22. * Detail: https://cli.vuejs.org/config/#publicpath
  23. */
  24. publicPath: "/",
  25. outputDir: "dist",
  26. assetsDir: "static",
  27. lintOnSave: false, //process.env.NODE_ENV === 'development'
  28. productionSourceMap: false,
  29. devServer: {
  30. disableHostCheck: true,
  31. port: port,
  32. open: false,
  33. headers: {
  34. "Access-Control-Allow-Origin": "*"
  35. },
  36. overlay: {
  37. warnings: false,
  38. errors: true
  39. },
  40. //192.168.0.246:8602
  41. //127.0.0.1:8603
  42. proxy: {
  43. // change xxx-api/login => mock/login
  44. // detail: https://cli.vuejs.org/config/#devserver-proxy
  45. [process.env.VUE_APP_BASE_API]: {
  46. target: `http://192.168.0.246:8602`,
  47. // target: `http://192.168.0.56:8502`,
  48. // target: `http://192.168.0.248:6000`,
  49. //target: `http://api.szlcloud.com/admin`,
  50. // target:http://a21347410b.iask.in:6000
  51. changeOrigin: true,
  52. logLevel: "debug",
  53. pathRewrite: {
  54. ["^" + process.env.VUE_APP_BASE_API]: ""
  55. }
  56. }
  57. // logLevel: "debug"
  58. }
  59. //after: require('./mock/mock-server.js')
  60. },
  61. configureWebpack: {
  62. // provide the app's title in webpack's name field, so that
  63. // it can be accessed in index.html to inject the correct title.
  64. name: name,
  65. resolve: {
  66. alias: {
  67. "@": resolve("src")
  68. }
  69. }
  70. },
  71. chainWebpack(config) {
  72. config.plugins.delete("preload"); // TODO: need test
  73. config.plugins.delete("prefetch"); // TODO: need test
  74. config.plugin("provide").use(webpack.ProvidePlugin, [
  75. {
  76. "window.Quill": "quill"
  77. }
  78. ]);
  79. // set svg-sprite-loader
  80. config.module
  81. .rule("svg")
  82. .exclude.add(resolve("src/icons"))
  83. .end();
  84. config.module
  85. .rule("icons")
  86. .test(/\.svg$/)
  87. .include.add(resolve("src/icons"))
  88. .end()
  89. .use("svg-sprite-loader")
  90. .loader("svg-sprite-loader")
  91. .options({
  92. symbolId: "icon-[name]"
  93. })
  94. .end();
  95. // set preserveWhitespace
  96. config.module
  97. .rule("vue")
  98. .use("vue-loader")
  99. .loader("vue-loader")
  100. .tap(options => {
  101. options.compilerOptions.preserveWhitespace = true;
  102. return options;
  103. })
  104. .end();
  105. config
  106. // https://webpack.js.org/configuration/devtool/#development
  107. .when(process.env.NODE_ENV === "development", config =>
  108. config.devtool("cheap-source-map")
  109. );
  110. config.when(process.env.NODE_ENV !== "development", config => {
  111. config
  112. .plugin("ScriptExtHtmlWebpackPlugin")
  113. .after("html")
  114. .use("script-ext-html-webpack-plugin", [
  115. {
  116. // `runtime` must same as runtimeChunk name. default is `runtime`
  117. inline: /runtime\..*\.js$/
  118. }
  119. ])
  120. .end();
  121. config.optimization.splitChunks({
  122. chunks: "all",
  123. cacheGroups: {
  124. libs: {
  125. name: "chunk-libs",
  126. test: /[\\/]node_modules[\\/]/,
  127. priority: 10,
  128. chunks: "initial" // only package third parties that are initially dependent
  129. },
  130. elementUI: {
  131. name: "chunk-elementUI", // split elementUI into a single package
  132. priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
  133. test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
  134. },
  135. commons: {
  136. name: "chunk-commons",
  137. test: resolve("src/components"), // can customize your rules
  138. minChunks: 3, // minimum common number
  139. priority: 5,
  140. reuseExistingChunk: true
  141. }
  142. }
  143. });
  144. config.optimization.runtimeChunk("single");
  145. });
  146. }
  147. };