import type { PluginOption } from "vite" import type { env as EnvType } from "../../packages/shared/src/env" export function htmlInjectPlugin(env: typeof EnvType): PluginOption { return { name: "html-transform", enforce: "post", transformIndexHtml(html) { return html.replace( "", ``, ) }, } }