mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
14 lines
322 B
TypeScript
14 lines
322 B
TypeScript
import { createHtmlPlugin } from 'vite-plugin-html'; // https://github.com/vbenjs/vite-plugin-html/blob/main/README.zh_CN.md
|
|
|
|
export default (env) => {
|
|
return createHtmlPlugin({
|
|
minify: true, // 压缩HTML
|
|
inject: {
|
|
// 注入数据
|
|
data: {
|
|
title: env.VITE_APP_TITLE,
|
|
},
|
|
},
|
|
});
|
|
};
|