unbuild icon indicating copy to clipboard operation
unbuild copied to clipboard

How to build iife.js

Open guangzan opened this issue 2 years ago • 1 comments

guangzan avatar Mar 21 '22 14:03 guangzan

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,
        },
      )
    },
  },

golddream-y avatar Aug 19 '22 04:08 golddream-y