mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
36 lines
784 B
TypeScript
36 lines
784 B
TypeScript
/**
|
|
*
|
|
* @param title 浏览器 title 名称
|
|
*/
|
|
export const htmlTitlePlugin = (title: string) => {
|
|
return {
|
|
name: 'html-transform',
|
|
transformIndexHtml: (html: string) => {
|
|
return html.replace(/<title>(.*?)<\/title>/, `<title>${title}</title>`)
|
|
},
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param options 预处理 css 文件
|
|
* @returns additionalData string
|
|
*
|
|
* @remark 辅助处理需要全局注入的 css 样式文件, 会在构建期间完成注入
|
|
*/
|
|
export const mixinCSSPlugin = (options?: string[]) => {
|
|
const defaultOptions = []
|
|
|
|
if (Array.isArray(options)) {
|
|
defaultOptions.push(...options)
|
|
}
|
|
|
|
const mixisString = defaultOptions.reduce((pre, curr) => {
|
|
const temp = `@import "${curr}";`
|
|
|
|
return (pre += temp)
|
|
}, '')
|
|
|
|
return mixisString as string
|
|
}
|