mentaljam / rollup-plugin-html2

Rollup plugin to inject bundled files to an HTML template
https://www.npmjs.com/package/rollup-plugin-html2
MIT License
20 stars 5 forks source link

Exclude option #10

Closed MrFoxPro closed 2 years ago

MrFoxPro commented 3 years ago

Add exclude option for entries. It can be useful for registering service worker with code

const worker = new Worker('worker.js', {
  type: 'module',
});

and preloading

  <link rel="modulepreload" href="worker.js" as="script">

but this script should not be appended in body