()
| 139 | } |
| 140 | |
| 141 | private async _loadCustomCollection(): Promise<IconifyJSON[]> { |
| 142 | return Promise.all( |
| 143 | (this.options.customCollections || []) |
| 144 | .map(collection => loadCustomCollection(collection, this.nuxt.options.rootDir)), |
| 145 | ) |
| 146 | } |
| 147 | |
| 148 | async loadClientBundleCollections(): Promise<ResolvedBundleIcons> { |
| 149 | const { |
no test coverage detected