Joaquín Sánchez

Results 923 comments of Joaquín Sánchez

@SarcevicAntonio @ogrotten you can use `preset-icons` from `unocss`, you don't need more sfc for your icons, the icons will go to your css

@sylvainpolletvillard you can add your custom compiler, check the `vite-svelte` example: https://github.com/antfu/unplugin-icons/blob/main/examples/vite-svelte/vite.config.js and https://github.com/antfu/unplugin-icons/blob/main/examples/vite-svelte/src/CustomSvg.svelte

@sylvainpolletvillard working on adding `i18n` support new feature, stay turned... ;)

I need to fix a few things, but it works, on mouse over the title will appear as a tootip: ![imagen](https://user-images.githubusercontent.com/6311119/160016940-c594bcce-eca2-4c4d-8d11-a60c1e92641d.png) ![imagen](https://user-images.githubusercontent.com/6311119/160016831-85933067-9fbd-4486-9443-51ee33bb4323.png)

@kmohrf Maybe you can use aliases in combination with enable only your collection: - [aliases](https://github.com/antfu/unplugin-icons#collection-aliases) - [enable collections](https://github.com/antfu/unplugin-icons#name-conversion), see: ```ts IconsResolver({ // ===> this is optional, default enabling all the...

@kmohrf just use this: ```ts Icons({ compiler: 'vue3', }), Components({ dts: true, resolvers: [ IconsResolver({ prefix: '', alias: { sys: 'system-uicons', }, enabledCollections: ['system-uicons'], }), ], }), ``` then ```html...

@TuiMao233 have you read this entry https://github.com/antfu/unplugin-icons#advanced-custom-icon-set-cleanup?

try adding `enabledCollections: ['prime'],` to the `IconsResolver`

It is not back, this page is dynamic and so excluded by default from ssg, I wrote about it on discussions a few months ago. I am checking how to...

@kemalcany @thuongtruong1009 You can check this repo https://github.com/userquin/test-pwa-ts-4.5.5, I have included there a sw router for dynamic pages at first level and some server logic to use it on development...