新媒体-合同签约,CA签约

index.js 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. target: 'https://media.kuxuan.com',
  13. // target: 'https://media.kuxuan-inc.com/',
  14. changeOrigin: true, //改变源
  15. pathRewrite: {
  16. '^/api': 'https://media.kuxuan.com'
  17. // '^/api':'https://media.kuxuan-inc.com/'
  18. }
  19. }
  20. },
  21. // Various Dev Server settings
  22. host: '127.0.0.1', // can be overwritten by process.env.HOST
  23. port: 8080, // 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, '../../index.html'),
  42. // Paths
  43. assetsRoot: path.resolve(__dirname, '../../'),
  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. }