Wds Plugin Polyfill • Inject polyfills to HTML responses served by the Web Dev Server.
$ npm i @chialab/wds-plugin-polyfill -D
$ yarn add @chialab/wds-plugin-polyfill -D
import { startDevServer } from '@web/dev-server';
import { polyfillPlugin } from '@chialab/wds-plugin-polyfill';
await startDevServer({
plugins: [
polyfillPlugin({
minify: true,
features: {
'URL': {},
'URL.prototype.toJSON': {},
'URLSearchParams': {},
'Promise': {},
'Promise.prototype.finally': {},
'fetch': {},
},
}),
],
});
It uses the polyfill.io library under the hoods.
Wds Plugin Polyfill is released under the MIT license.