Joe Tagliaferro

Results 15 comments of Joe Tagliaferro

Seems that the issue, in my case, was related to disabling `scrollIntoView`. Changing https://github.com/RafidMuhymin/astro-spa/blob/main/buildPage.js#L12-L19 ``` ? `const newContent = doc.querySelector("${containerSelector}"); ${ scrollIntoView ? `const container = document.querySelector("${containerSelector}"); container.replaceWith(newContent); newContent.scrollIntoView(${JSON.stringify(scrollIntoViewOptions)});` :...

I opened PR #6 which resolves my issue, which turns out to be the same issue as #5

I understand that it is experimental and essentially in a preview mode. I was just logging the bug so it's a known issue. And if we could resolve it, all...

So the client config having an impact is a bit of a red herring. If we add `start.experimental.islands ? serverComponents.server() : null` to the [`server-fns` plugins](https://github.com/solidjs/solid-start/blob/main/packages/start/config/index.js#L250) it resolves the issue...

@ryansolid so I'm still seeing this now that it's merged and deployed. I finally got around to testing the release tonight. I'll keep tinkering and try and resolve it more...