UNPKG
vite-plugin-dns-prefetcher
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
An Vite plugin to add dns-prefetch link tag in HTML.
github.com/CrisChr/vite-plugin-dns-prefetcher
vite-plugin-dns-prefetcher
/
dist
/
main.cjs
2 lines
(1 loc)
•
235 B
JavaScript
View Raw
1
2
"use strict"
;
function
n
(
){
return
{
name
:
"vite-plugin-dns-prefetcher"
,
apply
:
"build"
,
enforce
:
"post"
,
transformIndexHtml
(
e
){
console
.
log
(
"=====transform html======="
)},
buildEnd
(
e
){
console
.
log
(
"===========build end======"
)}}}
module
.
exports
=n;