You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
407 B
14 lines
407 B
/** |
|
* Plugin to minimize and use ejs template syntax in index.html. |
|
* https://github.com/anncwb/vite-plugin-html |
|
*/ |
|
import type { PluginOption } from 'vite' |
|
import { createHtmlPlugin } from 'vite-plugin-html' |
|
|
|
export function configHtmlPlugin({ isBuild }: { isBuild: boolean }) { |
|
const htmlPlugin: PluginOption[] = createHtmlPlugin({ |
|
minify: isBuild, |
|
viteNext: true, |
|
}) |
|
return htmlPlugin |
|
}
|
|
|