[关闭]
@Dale-Lin 2022-08-04T21:29:45.000000Z 字数 457 阅读 266

output

webpack5


output 配置声明如何输出构建结果,支持的配置项包括:

  1. module.exports = {
  2. // ...
  3. entry: {
  4. main: {
  5. import: './src/index.js',
  6. library: {
  7. name: 'MyLibrary',
  8. type: 'umd',
  9. umdNamedDefine: true
  10. }
  11. },
  12. another: {
  13. import: './src/another.js',
  14. library: {
  15. name: 'AnotherLibrary',
  16. type: 'commonjs2'
  17. }
  18. }
  19. }
  20. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注