移动端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

4 年前
4 年前
2 年前
4 年前
4 年前
3 年前
3 年前
4 年前
4 年前
4 年前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. 'use strict'
  2. // Template version: 1.3.1
  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. "/api": {
  12. // 请求的目标主机
  13. //target: 'http://116.255.223.226:8081/nsgk_test/',
  14. target: 'http://localhost:8080/',
  15. changeOrigin: true,
  16. pathRewrite: {
  17. '^/api': ''
  18. }
  19. }
  20. },
  21. // Various Dev Server settings
  22. host: '0.0.0.0', // can be overwritten by process.env.HOST
  23. port: 85, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
  24. autoOpenBrowser: false,
  25. errorOverlay: true,
  26. notifyOnErrors: true,
  27. poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
  28. /**
  29. * Source Maps
  30. */
  31. // https://webpack.js.org/configuration/devtool/#development
  32. devtool: 'cheap-module-eval-source-map',
  33. // If you have problems debugging vue-files in devtools,
  34. // set this to false - it *may* help
  35. // https://vue-loader.vuejs.org/en/options.html#cachebusting
  36. cacheBusting: true,
  37. cssSourceMap: true
  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. assetsPublicPath: '/',
  46. /**
  47. * Source Maps
  48. */
  49. productionSourceMap: true,
  50. // https://webpack.js.org/configuration/devtool/#production
  51. devtool: '#source-map',
  52. // Gzip off by default as many popular static hosts such as
  53. // Surge or Netlify already gzip all static assets for you.
  54. // Before setting to `true`, make sure to:
  55. // npm install --save-dev compression-webpack-plugin
  56. productionGzip: false,
  57. productionGzipExtensions: ['js', 'css'],
  58. // Run the build command with an extra argument to
  59. // View the bundle analyzer report after build finishes:
  60. // `npm run build --report`
  61. // Set to `true` or `false` to always turn it on or off
  62. bundleAnalyzerReport: process.env.npm_config_report
  63. }
  64. }