Search Docs
type AppIconItem = { src: string; size: number; target?: 'apple-touch-icon' | 'web-app-manifest'; }; type AppIcon = string | { name?: string; icons: AppIconItem[]; filename?: string; };
undefined
设置 Web 应用的图标,用于在添加到移动设备的主屏幕时显示:
icons
apple-touch-icon
manifest
string 类型的 appIcon 配置是对象类型的一个语法糖。
string
appIcon
export default { html: { appIcon: './src/assets/icon.png', }, };
以上配置相当于下面配置的语法糖:
export default { html: { appIcon: { icons: [{ src: './src/assets/icon.png', size: 180 }] } }, };
该配置项的使用方式与 Rsbuild 完全一致。详细信息请参考 Rsbuild - html.appIcon。