You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the integration assumes that for a component tag name like this
<x-greeting></x-greeting>
It will assume that there is a corresponding file in a components directory, e.g.
src/
components
greeting.js
Ideally, we should be able to use some sort of Astro / Vite internals to find the source of these components, since they would need to be in the head anyway, e.g.
<scriptsrc="../components/greeting.js"></script>
The text was updated successfully, but these errors were encountered:
Currently the integration assumes that for a component tag name like this
It will assume that there is a corresponding file in a components directory, e.g.
Ideally, we should be able to use some sort of Astro / Vite internals to find the source of these components, since they would need to be in the head anyway, e.g.
The text was updated successfully, but these errors were encountered: