We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
customCollections: { // key as the collection name 'my-icons': { play: '<svg><!-- ... --></svg>', // load your custom icon lazily settings: () => fs.readFile('../public/svg-icon/play.svg', 'utf-8'), /* ... */ }, },
// generated by unplugin-vue-components
Iconplay: typeof import('~icons/ic/onplay')['default']
console.error
Icon `ic:onplay` not found
There seems to be a problem with the automatically generated path The correct path is more likely to be like this
Iconplay: typeof import('~icons/my-icons/play')['default']
The text was updated successfully, but these errors were encountered:
No branches or pull requests
// generated by unplugin-vue-components
console.error
There seems to be a problem with the automatically generated path
The correct path is more likely to be like this
The text was updated successfully, but these errors were encountered: