Adding head elements
To add elements to the iframe of the editor, use the head property.
This will only be added in edit mode. In render mode the responsibilty falls
to you.
import { Editor, Config } from "@tyzo/page-editor";
const config: Config = {
head: <meta name="description" content="Editor" />,
components: {
...
}
}