Search Docs
string
undefined
The export name of the UMD bundle.
The module name of the UMD bundle must not conflict with the global variable name.
The UMD bundle will be mounted to global.MyLibrary.
global.MyLibrary
1export default { 2 lib: [ 3 { 4 format: 'umd', 5 umdName: 'MyLibrary', 6 }, 7 ], 8};