UNPKG

vite-plugin-dns-prefetcher

Version:

An Vite plugin to add dns-prefetch link tag in HTML.

17 lines (16 loc) 298 B
function n() { return { name: "vite-plugin-dns-prefetcher", apply: "build", enforce: "post", transformIndexHtml(e) { console.log("=====transform html======="); }, buildEnd(e) { console.log("===========build end======"); } }; } export { n as default };