core
Add a plugin to Unhead.
Type:
export type use = (plugin: HeadPlugin) => voidAdds a plugin to Unhead.
This will register the hooks used by the plugin.
import { createHead } from 'unhead'
const head = createHead()
const deleteFooPlugin = defineHeadPlugin({
  hooks: {
    'tag:normalise': function ({ tag }) {
      delete tag.props.foo
    },
  }
})
head.use(deleteFooPlugin)