Search Docs
undefined | true | PreloadOption
type IncludeType = 'async-chunks' | 'initial' | 'all-assets' | 'all-chunks'; type Filter = Array<string | RegExp> | ((filename: string) => boolean); interface PreloadOption { type?: IncludeType; include?: Filter; exclude?: Filter; }
undefined
为 Rsbuild 构建生成的静态资源注入 <link rel="preload"> 标签。
<link rel="preload">
该配置项的使用方式与 Rsbuild 完全一致。详细信息请参考 Rsbuild - performance.preload。