unbuild
unbuild copied to clipboard
How to build iife.js
use hook.
hooks: {
'rollup:options': (ctx, option) => {
option.output?.push(
{
name: 'xxxx',
dir: ctx.options.outDir,
format: 'iife',
exports: 'auto',
preferConst: true,
externalLiveBindings: false,
freeze: false,
},
)
},
},