vbenjs / vite-plugin-html

A vite plugin for processing html. It is developed based on lodash template
MIT License
554 stars 92 forks source link

请教:如何生成script里面的内容呢 #130

Open luchanan opened 9 months ago

luchanan commented 9 months ago

比如生成

{
            tag: 'script',
          // 是否可以写入内容???
},
zhnoah commented 7 months ago
{
    inject: {
        data: {
            injectScript: `
                <script>window.versoin='XXXX'</script>
            `
        }
     }
}