ray-template/vite-helper/html-title-plugin.ts
2024-04-13 15:24:51 +08:00

16 lines
323 B
TypeScript

/**
*
* @param title 浏览器 title 名称
*
* @description
* 注入浏览器标题。
*/
export const htmlTitlePlugin = (title: string) => {
return {
name: 'html-transform',
transformIndexHtml: (html: string) => {
return html.replace(/<title>(.*?)<\/title>/, `<title>${title}</title>`)
},
}
}