prod.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module.exports = {
  2. env: {
  3. NODE_ENV: '"production"',
  4. },
  5. defineConstants: {
  6. ENV: '"PRODUCTION"',
  7. // HOST: '"https://api.bicredit.xin"',
  8. HOST: '"https://api.hryk.net"',
  9. // "HOST": '"http://192.168.0.168:810"',
  10. APPID: '"458"',
  11. },
  12. mini: {},
  13. h5: {
  14. /**
  15. * WebpackChain 插件配置
  16. * @docs https://github.com/neutrinojs/webpack-chain
  17. */
  18. // webpackChain (chain) {
  19. // /**
  20. // * 如果 h5 端编译后体积过大,可以使用 webpack-bundle-analyzer 插件对打包体积进行分析。
  21. // * @docs https://github.com/webpack-contrib/webpack-bundle-analyzer
  22. // */
  23. // chain.plugin('analyzer')
  24. // .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin, [])
  25. // /**
  26. // * 如果 h5 端首屏加载时间过长,可以使用 prerender-spa-plugin 插件预加载首页。
  27. // * @docs https://github.com/chrisvfritz/prerender-spa-plugin
  28. // */
  29. // const path = require('path')
  30. // const Prerender = require('prerender-spa-plugin')
  31. // const staticDir = path.join(__dirname, '..', 'dist')
  32. // chain
  33. // .plugin('prerender')
  34. // .use(new Prerender({
  35. // staticDir,
  36. // routes: [ '/pages/index/index' ],
  37. // postProcess: (context) => ({ ...context, outputPath: path.join(staticDir, 'index.html') })
  38. // }))
  39. // }
  40. },
  41. };