index.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * @Author: shenmei
  3. * @Date: 2021-08-04 13:54:35
  4. * @LastEditors: Please set LastEditors
  5. * @LastEditTime: 2022-06-17 17:01:27
  6. * @Description:
  7. * @FilePath: \maoming-h5\config\index.js
  8. */
  9. "use strict";
  10. // Template version: 1.3.1
  11. // see http://vuejs-templates.github.io/webpack for documentation.
  12. const path = require("path");
  13. module.exports = {
  14. dev: {
  15. // Paths
  16. assetsSubDirectory: "static",
  17. assetsPublicPath: "/",
  18. proxyTable: {},
  19. // Various Dev Server settings
  20. // host: "192.168.1.140",
  21. host: "localhost", // can be overwritten by process.env.HOST
  22. port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  23. autoOpenBrowser: true,
  24. errorOverlay: true,
  25. notifyOnErrors: true,
  26. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  27. // Use Eslint Loader?
  28. // If true, your code will be linted during bundling and
  29. // linting errors and warnings will be shown in the console.
  30. useEslint: false,
  31. // If true, eslint errors and warnings will also be shown in the error overlay
  32. // in the browser.
  33. showEslintErrorsInOverlay: false,
  34. /**
  35. * Source Maps
  36. */
  37. // https://webpack.js.org/configuration/devtool/#development
  38. devtool: "cheap-module-eval-source-map",
  39. // If you have problems debugging vue-files in devtools,
  40. // set this to false - it *may* help
  41. // https://vue-loader.vuejs.org/en/options.html#cachebusting
  42. cacheBusting: true,
  43. cssSourceMap: true
  44. },
  45. build: {
  46. // Template for index.html
  47. index: path.resolve(__dirname, "../dist/index.html"),
  48. // Paths
  49. assetsRoot: path.resolve(__dirname, "../dist"),
  50. assetsSubDirectory: "static",
  51. assetsPublicPath: "./",
  52. /**
  53. * Source Maps
  54. */
  55. productionSourceMap: true,
  56. // https://webpack.js.org/configuration/devtool/#production
  57. devtool: "#source-map",
  58. // Gzip off by default as many popular static hosts such as
  59. // Surge or Netlify already gzip all static assets for you.
  60. // Before setting to `true`, make sure to:
  61. // npm install --save-dev compression-webpack-plugin
  62. productionGzip: false,
  63. productionGzipExtensions: ["js", "css"],
  64. // Run the build command with an extra argument to
  65. // View the bundle analyzer report after build finishes:
  66. // `npm run build --report`
  67. // Set to `true` or `false` to always turn it on or off
  68. bundleAnalyzerReport: process.env.npm_config_report
  69. }
  70. };