import type { Plugin } from 'vite'; export function setupHtmlPlugin(buildTime: string) { const plugin: Plugin = { apply: 'build', name: 'html-plugin', transformIndexHtml(html) { return html.replace('', `\n `); } }; return plugin; }