/** * Plugin to minimize and use ejs template syntax in index.html. * https://github.com/anncwb/vite-plugin-html */ import legacy from '@vitejs/plugin-legacy'; import type { PluginOption } from 'vite'; export function configLegacyPlugin() { const htmlPlugin: PluginOption[] = legacy({ targets: ['Chrome 63'], modernPolyfills: true, }); return htmlPlugin; }