Building my first Astro 1.0 app. So far, everything seems to go smoothly. I did notice though in my browser console that it’s throwing a warning saying some resources may not be properly disposed. This is because I am using a UI framework (SolidJS) for some of my components. I did a bit of digging and it seems (I think) it is because my components don’t have the usual index.ts entry point file like in a normal Solid app.
The Solid integration docs aren’t really saying anything about this. And, I’m not really sure if this is just something with the Solid integration or if it’s common across other UI framework integrations like React (haven’t really tried).
How would I go about silencing that warning? It doesn’t really seem practical to call Solid’s render() at every component file. So, is there another solution?