index.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. 'use strict'
  2. // Template version: 1.2.6
  3. // see http://vuejs-templates.github.io/webpack for documentation.
  4. const path = require('path')
  5. module.exports = {
  6. dev: {
  7. // Paths
  8. assetsSubDirectory: 'static',
  9. assetsPublicPath: '/',
  10. proxyTable: {},
  11. // Various Dev Server settings
  12. // can be overwritten by process.env.HOST
  13. // if you want dev by ip, please set host: '0.0.0.0'
  14. host: 'localhost',
  15. port: 9528, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  16. autoOpenBrowser: true,
  17. errorOverlay: true,
  18. notifyOnErrors: false,
  19. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  20. // Use Eslint Loader?
  21. // If true, your code will be linted during bundling and
  22. // linting errors and warnings will be shown in the console.
  23. useEslint: true,
  24. // If true, eslint errors and warnings will also be shown in the error overlay
  25. // in the browser.
  26. showEslintErrorsInOverlay: false,
  27. /**
  28. * Source Maps
  29. */
  30. // https://webpack.js.org/configuration/devtool/#development
  31. devtool: 'cheap-source-map',
  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: '/',
  53. /**
  54. * Source Maps
  55. */
  56. productionSourceMap: false,
  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:prod --report`
  68. // Set to `true` or `false` to always turn it on or off
  69. bundleAnalyzerReport: process.env.npm_config_report || false,
  70. // `npm run build:prod --generate_report`
  71. generateAnalyzerReport: process.env.npm_config_generate_report || false
  72. }
  73. }