mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-04 22:28:40 +08:00
23 lines
540 B
TypeScript
23 lines
540 B
TypeScript
/**
|
|
*
|
|
* @param options 预处理 css 文件
|
|
*
|
|
* @description
|
|
* 辅助处理需要全局注入的 css 样式文件,会在构建期间完成注入。
|
|
*
|
|
* 路径会以传递的具体进行解析。
|
|
*/
|
|
export const mixinCss = (options?: string[]) => {
|
|
if (!Array.isArray(options)) {
|
|
throw TypeError('[mixinCss]: The mixinCSSPlugin argument must be an array!')
|
|
}
|
|
|
|
const mixinString = options.reduce((pre, curr) => {
|
|
const temp = `@use "${curr}" as *;`
|
|
|
|
return (pre += temp)
|
|
}, '')
|
|
|
|
return mixinString as string
|
|
}
|