gatsby-plugin-next-seo
Version:
SEO plugin for Gatsby projects
17 lines (15 loc) • 611 B
text/typescript
const helmet = {
htmlAttributes: { toComponent: () => `html-attributes-component` },
bodyAttributes: { toComponent: () => `body-attributes-component` },
title: { toComponent: () => `title-component` },
link: { toComponent: () => `link-component` },
meta: { toComponent: () => `meta-component` },
noscript: { toComponent: () => `noscript-component` },
script: { toComponent: () => `script-component` },
style: { toComponent: () => `style-component` },
base: { toComponent: () => `base-component` },
};
export const context = {};
export const getFilledContext = () => {
return { helmet };
};