Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 427 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 427 Bytes

PWAStudio simplifying targetables

Usage Exsample

const { ExtendLocalIntercept } = require('@joseamietta/simplifying-targetables');

function localIntercept(targets) {
  const extendLocalIntercept = new ExtendLocalIntercept(targets);
  extendLocalIntercept.allowTargetables();
  extendLocalIntercept.allowCssOverwrites();
  extendLocalIntercept.allowPeregrineWraps();
}

module.exports = localIntercept;