mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-04 22:28:40 +08:00
16 lines
323 B
TypeScript
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>`)
|
|
},
|
|
}
|
|
}
|