index.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. 'use strict'
  2. const path = require('path');
  3. // 首页模板
  4. const indexTemplate = "src/index.html";
  5. //修改U-config.js 增加版本
  6. const fsC = require('./fs.js');
  7. fsC.fs();
  8. module.exports = {
  9. //测试环境配置
  10. dev: {
  11. //页面引入静态资源前缀
  12. BASE_URL: 'src/U/',
  13. //首页名称
  14. filename:"index.html",
  15. //首页模板
  16. indexTemplate:indexTemplate,
  17. //资源文件夹
  18. assetsSubDirectory: '',
  19. //动态js,css引入目录
  20. assetsPublicPath: '',
  21. //本地代理
  22. proxyTable: {
  23. '/buyerside-h5-api': {
  24. target: 'http://172.16.90.64:8755',
  25. changeOrigin: true,
  26. pathRewrite: {
  27. '^/buyerside-h5-api': ''
  28. }
  29. }
  30. },
  31. disableHostCheck: true,
  32. //配置测试地址
  33. host: 'localhost',
  34. //测试端口
  35. port: 9527,
  36. //自动打开浏览器
  37. autoOpenBrowser: true,
  38. //错误提示
  39. errorOverlay: true,
  40. notifyOnErrors: false,
  41. //轮询
  42. poll: false,
  43. //使用Eslint Loader?
  44. //如果为true,则在捆绑期间将对您的代码进行处理
  45. // linting错误和警告将显示在控制台中。
  46. useEslint: true,
  47. //如果为true,则错误覆盖中也会显示eslint错误和警告
  48. //在浏览器中
  49. showEslintErrorsInOverlay: false,
  50. /**
  51. * Source Maps
  52. */
  53. // https://webpack.js.org/configuration/devtool/#development
  54. devtool: '#cheap-source-map',
  55. //如果在devtools中调试vue文件时遇到问题,
  56. //将此设置为false - 它可以*帮助
  57. // https://vue-loader.vuejs.org/en/options.html#cachebusting
  58. cacheBusting: true,
  59. // CSS Sourcemaps默认关闭,因为相对路径是“buggy”
  60. //使用此选项,根据CSS-Loader自述文件
  61. //(https://github.com/webpack/css-loader#sourcemaps)
  62. //根据我们的经验,他们通常按预期工作,
  63. //启用此选项时,请注意此问题。
  64. cssSourceMap: false,
  65. },
  66. //生产打包配置
  67. build: {
  68. //页面引入静态资源前缀
  69. BASE_URL: 'buyer-side-h5/',
  70. //入口首页名称
  71. index: path.resolve(__dirname, '../dist/index.html'),
  72. // index: 'index.html',
  73. //首页模板
  74. indexTemplate:indexTemplate,
  75. //公共资源生成目录
  76. assetsRoot: path.resolve(__dirname, '../dist'),
  77. // assetsRoot: path.resolve("z:\gylHtml"),
  78. //公共资源目录名称
  79. assetsSubDirectory: 'buyer-side-h5',
  80. //动态js,css引入目录
  81. assetsPublicPath: '',
  82. /**
  83. * Source Maps
  84. */
  85. productionSourceMap: false,
  86. // https://webpack.js.org/configuration/devtool/#production
  87. devtool: '#source-map',
  88. // Gzip off by default as many popular static hosts such as
  89. // Surge or Netlify already gzip all static assets for you.
  90. // Before setting to `true`, make sure to:
  91. // npm install --save-dev compression-webpack-plugin
  92. productionGzip: false,
  93. productionGzipExtensions: ['js', 'css'],
  94. // Run the build command with an extra argument to
  95. // View the bundle analyzer report after build finishes:
  96. // `npm run build --report`
  97. // Set to `true` or `false` to always turn it on or off
  98. bundleAnalyzerReport: process.env.npm_config_report
  99. }
  100. }