index.js 3.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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: 'test1.sgjyun.com',
  15. // host: 'jk.kuyicloud.com',
  16. host: 'test1.sgjyun.com',
  17. port: 8090, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  18. autoOpenBrowser: true,
  19. errorOverlay: true,
  20. notifyOnErrors: false,
  21. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  22. // Use Eslint Loader?
  23. // If true, your code will be linted during bundling and
  24. // linting errors and warnings will be shown in the console.
  25. useEslint: false,
  26. // If true, eslint errors and warnings will also be shown in the error overlay
  27. // in the browser.
  28. showEslintErrorsInOverlay: false,
  29. /**
  30. * Source Maps
  31. */
  32. // https://webpack.js.org/configuration/devtool/#development
  33. devtool: '#cheap-source-map',
  34. // If you have problems debugging vue-files in devtools,
  35. // set this to false - it *may* help
  36. // https://vue-loader.vuejs.org/en/options.html#cachebusting
  37. cacheBusting: true,
  38. // CSS Sourcemaps off by default because relative paths are "buggy"
  39. // with this option, according to the CSS-Loader README
  40. // (https://github.com/webpack/css-loader#sourcemaps)
  41. // In our experience, they generally work as expected,
  42. // just be aware of this issue when enabling this option.
  43. cssSourceMap: false,
  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. /**
  52. * You can set by youself according to actual condition
  53. * You will need to set this if you plan to deploy your site under a sub path,
  54. * for example GitHub pages. If you plan to deploy your site to https://foo.github.io/bar/,
  55. * then assetsPublicPath should be set to "/bar/".
  56. * In most cases please use '/' !!!
  57. */
  58. // assetsPublicPath: '/vue-element-admin/', // If you are deployed on the root path, please use '/'
  59. assetsPublicPath: './',
  60. /**
  61. * Source Maps
  62. */
  63. productionSourceMap: false,
  64. // https://webpack.js.org/configuration/devtool/#production
  65. devtool: '#source-map',
  66. // Gzip off by default as many popular static hosts such as
  67. // Surge or Netlify already gzip all static assets for you.
  68. // Before setting to `true`, make sure to:
  69. // npm install --save-dev compression-webpack-plugin
  70. productionGzip: false,
  71. productionGzipExtensions: ['js', 'css'],
  72. // Run the build command with an extra argument to
  73. // View the bundle analyzer report after build finishes:
  74. // `npm run build --report`
  75. // Set to `true` or `false` to always turn it on or off
  76. bundleAnalyzerReport: process.env.npm_config_report
  77. }
  78. }