uat.js 492 B

12345678910111213141516171819
  1. module.exports = { // eslint-disable-line
  2. env: {
  3. NODE_ENV: '"production"'
  4. },
  5. defineConstants: {
  6. HTTP_SERVER: '"http://localhost:21021"',
  7. },
  8. mini: {},
  9. h5: {
  10. /**
  11. * 如果h5端编译后体积过大,可以使用webpack-bundle-analyzer插件对打包体积进行分析。
  12. * 参考代码如下:
  13. * webpackChain (chain) {
  14. * chain.plugin('analyzer')
  15. * .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin, [])
  16. * }
  17. */
  18. }
  19. }