import { Plugin } from 'vite'; const scriptInjection = ` ` export function codeInjectorPlugin(): Plugin { return { name: 'html-transform', transformIndexHtml: { enforce: 'pre', transform(html) { return html.replace('', `${scriptInjection}`); } } }; }