type AppIconItem = {
src: string;
size: number;
target?: 'apple-touch-icon' | 'web-app-manifest';
};
type AppIcon = {
name?: string;
icons: AppIconItem[];
filename?: string;
};undefinedSet the web application icons to display when added to the home screen of a mobile device:
icons field.apple-touch-icon and manifest tags in the HTML file.The usage of this configuration item is exactly the same as that of Rsbuild. For detailed information, please refer to Rsbuild - html.appIcon.