mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
6 lines
372 B
TypeScript
6 lines
372 B
TypeScript
export default defineNitroPlugin((nitroApp) => {
|
|
nitroApp.hooks.hook("render:html", (html, {event})=>{
|
|
html.head = html.head.map((headSection:string)=>headSection.replace(/<link((?=[^>]+\bhref="\/_nuxt\/DelayedWrapperTestComponent\.([^.]+?)\.js")[^>]+>)/, "")) //.replace(/<link rel="preload" href="\/_nuxt\/DelayedWrapperTestComponent\.js" as="script">/, "")
|
|
})
|
|
})
|