加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
polyv-icon.config.js 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
H-zk 提交于 2023-06-30 12:17 . feat: 观看页 SDK UI 开源版 v0.4.0
/**
* 文档地址:https://npm-registry.polyv.net/-/web/detail/@polyv/icons-cli
*/
/** @type {import('@polyv/icons-cli').IconLibraryCliConfig[]} */
module.exports = [
{
resourcesDir: './icon-svgs/pc',
outDir: './src/components/component-icons/pc',
libraryType: 'vue',
iconMap: './src/components/component-icons/pc/map.ts',
convertColorMode: 'all',
mapExportPrefix: 'PcIcon',
demoHtml: './icon-svgs/demo/icon-demo-pc.html',
libraryName: 'PC 端观看页图标',
endOfLine: 'lf',
},
{
resourcesDir: './icon-svgs/mobile',
outDir: './src/components/component-icons/mobile',
libraryType: 'vue',
iconMap: './src/components/component-icons/mobile/map.ts',
convertColorMode: 'all',
mapExportPrefix: 'MobileIcon',
demoHtml: './icon-svgs/demo/icon-demo-mobile.html',
libraryName: '移动端观看页图标',
endOfLine: 'lf',
},
{
resourcesDir: './icon-svgs/pc-origin',
outDir: './src/components/component-icons/pc-origin',
libraryType: 'vue',
iconMap: './src/components/component-icons/pc-origin/map.ts',
mapExportPrefix: 'PcOriginIcon',
demoHtml: './icon-svgs/demo/icon-demo-pc-origin.html',
libraryName: 'PC 端观看页图标(原始色)',
convertColorMode: 'origin',
endOfLine: 'lf',
},
{
resourcesDir: './icon-svgs/mobile-origin',
outDir: './src/components/component-icons/mobile-origin',
libraryType: 'vue',
iconMap: './src/components/component-icons/mobile-origin/map.ts',
mapExportPrefix: 'MobileOriginIcon',
demoHtml: './icon-svgs/demo/icon-demo-mobile-origin.html',
libraryName: '移动端观看页图标(原始色)',
convertColorMode: 'origin',
endOfLine: 'lf',
},
];
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化