How to use the @adobe/helix-shared.MarkupConfig function in @adobe/helix-shared

To help you get started, we’ve selected a few @adobe/helix-shared examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github adobe / helix-pipeline / src / utils / adjust-markup.js View on Github external
async function loadConfig(context, action) {
  const config = new MarkupConfig();
  const hasFile = await config.hasFile();
  action.markupconfig = action.markupconfig || (hasFile && config.init()) || undefined;
}