index.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. function resolve(dir) {
  6. return path.join(__dirname, dir)
  7. }
  8. module.exports = {
  9. chainWebpack: config => {
  10. config.resolve.alias
  11. .set('@', resolve('src')) // key,storage.set('@@', resolve('src/components'))
  12. },
  13. dev: {
  14. // Paths
  15. assetsSubDirectory: 'static',
  16. assetsPublicPath: '/',
  17. proxyTable: {
  18. '/dev': {
  19. target: 'https://www.tuanfengkeji.cn',
  20. changeOrigin: true,
  21. pathRewrite: {
  22. '^/dev': '',
  23. },
  24. }
  25. },
  26. https: false,
  27. // Various Dev Server settings
  28. // can be overwritten by process.env.HOST
  29. // if you want dev by ip, please set host: '0.0.0.0'
  30. host: 'localhost',
  31. // host: '192.168.0.33',
  32. port: 80, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  33. autoOpenBrowser: true,
  34. errorOverlay: true,
  35. notifyOnErrors: false,
  36. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  37. // Use Eslint Loader?
  38. // If true, your code will be linted during bundling and
  39. // linting errors and warnings will be shown in the console.
  40. useEslint: true,
  41. // If true, eslint errors and warnings will also be shown in the error overlay
  42. // in the browser.
  43. showEslintErrorsInOverlay: false,
  44. /**
  45. * Source Maps
  46. */
  47. // https://webpack.js.org/configuration/devtool/#development
  48. devtool: 'cheap-source-map',
  49. // CSS Sourcemaps off by default because relative paths are "buggy"
  50. // with this option, according to the CSS-Loader README
  51. // (https://github.com/webpack/css-loader#sourcemaps)
  52. // In our experience, they generally work as expected,
  53. // just be aware of this issue when enabling this option.
  54. cssSourceMap: false
  55. },
  56. build: {
  57. // Template for index.html
  58. index: path.resolve(__dirname, '../dist/index.html'),
  59. // Paths
  60. assetsRoot: path.resolve(__dirname, '../dist'),
  61. assetsSubDirectory: 'static',
  62. /**
  63. * You can set by youself according to actual condition
  64. * You will need to set this if you plan to deploy your site under a sub path,
  65. * for example GitHub pages. If you plan to deploy your site to https://foo.github.io/bar/,
  66. * then assetsPublicPath should be set to "/bar/".
  67. * In most cases please use '/' !!!
  68. */
  69. assetsPublicPath: '/tfdata/',
  70. /**
  71. * Source Maps
  72. */
  73. productionSourceMap: false,
  74. // https://webpack.js.org/configuration/devtool/#production
  75. devtool: 'source-map',
  76. // Gzip off by default as many popular static hosts such as
  77. // Surge or Netlify already gzip all static assets for you.
  78. // Before setting to `true`, make sure to:
  79. // npm install --save-dev compression-webpack-plugin
  80. productionGzip: false,
  81. productionGzipExtensions: ['js', 'css'],
  82. // Run the build command with an extra argument to
  83. // View the bundle analyzer report after build finishes:
  84. // `npm run build:prod --report`
  85. // Set to `true` or `false` to always turn it on or off
  86. bundleAnalyzerReport: process.env.npm_config_report || false,
  87. // `npm run build:prod --generate_report`
  88. generateAnalyzerReport: process.env.npm_config_generate_report || false
  89. }
  90. }