UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

11 lines (10 loc) 203 B
export function freezeHead(head) { const realPush = head.push; head.push = () => ({ dispose: () => { }, patch: () => { }, _poll: () => { } }); return () => { head.push = realPush; }; }