vite 向entry html中注入代码

Published: · LastMod: April 07, 2024 · 65 words

vite 向html中注入代码 🔗

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15

{
    name: 'bundle-time', // 打包时添加打包时间
    apply: 'build',
    enforce: 'post',
    transformIndexHtml: () => {
        return [
            {
                tag: 'script',
                children: `console.info("bundle time: %s", '${new Date().toLocaleString()}')`,
                injectTo: 'body'
            }
        ]
    }
}