prod.js 1.2 KB

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