No Description

index.js 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. 'use strict'
  2. const path = require('path')
  3. module.exports = {
  4. dev: {
  5. // Paths
  6. assetsSubDirectory: 'static',
  7. assetsPublicPath: '/',
  8. proxyTable: {},
  9. // Various Dev Server settings
  10. host: 'localhost', // can be overwritten by process.env.HOST
  11. port: 9526, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  12. autoOpenBrowser: false,
  13. errorOverlay: true,
  14. notifyOnErrors: false,
  15. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  16. // Use Eslint Loader?
  17. // If true, your code will be linted during bundling and
  18. // linting errors and warnings will be shown in the console.
  19. useEslint: true,
  20. // If true, eslint errors and warnings will also be shown in the error overlay
  21. // in the browser.
  22. showEslintErrorsInOverlay: false,
  23. /**
  24. * Source Maps
  25. */
  26. // https://webpack.js.org/configuration/devtool/#development
  27. devtool: 'cheap-module-eval-source-map',
  28. // If you have problems debugging vue-files in devtools,
  29. // set this to false - it *may* help
  30. // https://vue-loader.vuejs.org/en/options.html#cachebusting
  31. cacheBusting: true,
  32. // CSS Sourcemaps off by default because relative paths are "buggy"
  33. // with this option, according to the CSS-Loader README
  34. // (https://github.com/webpack/css-loader#sourcemaps)
  35. // In our experience, they generally work as expected,
  36. // just be aware of this issue when enabling this option.
  37. cssSourceMap: false,
  38. },
  39. build: {
  40. // Template for index.html
  41. index: path.resolve(__dirname, '../dist/index.html'),
  42. // Paths
  43. assetsRoot: path.resolve(__dirname, '../dist'),
  44. assetsSubDirectory: 'static',
  45. /**
  46. * You can set by youself according to actual condition
  47. * You will need to set this if you plan to deploy your site under a sub path,
  48. * for example GitHub pages. If you plan to deploy your site to https://foo.github.io/bar/,
  49. * then assetsPublicPath should be set to "/bar/".
  50. * In most cases please use '/' !!!
  51. */
  52. assetsPublicPath: '/', // If you are deployed on the root path, please use '/'
  53. /**
  54. * Source Maps
  55. */
  56. productionSourceMap: true,
  57. // https://webpack.js.org/configuration/devtool/#production
  58. devtool: '#source-map',
  59. // Gzip off by default as many popular static hosts such as
  60. // Surge or Netlify already gzip all static assets for you.
  61. // Before setting to `true`, make sure to:
  62. // npm install --save-dev compression-webpack-plugin
  63. productionGzip: false,
  64. productionGzipExtensions: ['js', 'css'],
  65. // Run the build command with an extra argument to
  66. // View the bundle analyzer report after build finishes:
  67. // `npm run build --report`
  68. // Set to `true` or `false` to always turn it on or off
  69. bundleAnalyzerReport: process.env.npm_config_report
  70. }
  71. }