-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
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
"Unable to locate X icon!" without restarting dev server #207
Comments
I can't get it to work even if I restart the dev server |
Same issue here, unfortunately. |
Same issue here but it don't work even if restarting the dev server. It loads small svgs with restarting the dev server, but big svgs are not recognized. |
Hmm, very odd. Thanks for the repro! I'll try to figure out what's going on here. Might need to add an explicit watcher for the |
Not sure if this is related but seems to be. But if I update my Astro Config to have a new icon. I have to restart the dev server for it to pick up that a new one is there. Otherwise, it says that it does not exist. Start the page and then in the config. Add a new icon and try to use it. |
also reporting the same issue! |
+1 Same thing happend to me, had to restart dev server everytime |
+1 |
1 similar comment
+1 |
+1 Same problem, v0.8.3 is working fine! But it seems no longer support the latest version of Astro. |
It seems to be caused by here.
The icons only be loaded when vite server start, maybe you can add a Thanks for this great integration by the way. |
Nested SVG give locate issuesI was cloning the tailwind studio website and only the 2nd & 5th SVG used in the code base was giving errors to be located because only those 2 were nested svg While the rest SVGs on the page loaded prefectly Any SVG with such a structure will break <svg viewBox="0 0 130 32" aria-hidden="true" class="hidden h-8 sm:block">
<svg viewBox="0 0 32 32" aria-hidden="true" preserveAspectRatio="xMinYMid meet">
<rect clip-path="url(#:Rcmkra:-clip)" class="h-8 transition-all duration-300 fill-white w-0 group-hover/logo:w-8">
</rect>
<use href="#:Rcmkra:-path" class="stroke-white" fill="none" stroke-width="1.5">
</use>
<defs>
<path id=":Rcmkra:-path"
d="">
</path>
<clipPath id=":Rcmkra:-clip">
<use href="#:Rcmkra:-path"> </use>
</clipPath>
</defs>
</svg>
<path class="fill-white"
d="">
</path>
</svg> |
I get the same error. I can't use it. |
Same issue ;( |
Same issue v1.1.1 but i tried to restart and it doesnt work https://github.com/easy-post-ia-1/easy-post-ia-landing/tree/KAN-18-Home |
What version of
astro-icon
are you using?v1.1.0
Astro Info
If this issue only occurs in one browser, which browser is a problem?
Chrome
Describe the Bug
When adding a new entry to the
icons/
directory, I see an "unable to locate X icon!" error. Restarting the dev server resolves the issue. Strangely, this does not occur on initial installation or for the first icon added toicons/
. However, after restarting the dev server once and adding more additions toicons/
, the error appears.See stackblitz example below. Try copying a
.svg
entry under a new name and update the Icon inpages/index.astro
to reference it.What's the expected result?
Updates to
icons/
are detected while the dev server is running.Link to Minimal Reproducible Example
https://stackblitz.com/~/edit/github-ds52xs
The text was updated successfully, but these errors were encountered: