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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
}
|