Thomas
Thomas
You could use this plugin to get a screenshot of the full page and then crop it to the size you want. Here's a good explanation of how to [crop...
Same here. After some debugging I discovered what seems to be an infinite loop that keeps rendering the ion-content indefinitely. Confirmed by logging calls to [`updateComponent`](https://github.com/ionic-team/stencil/blob/54ee75f6cb8130276a00af6fff479ea8e0741833/src/runtime/update-component.ts#L69).
I just created a new project (`npm init stencil`), added `fullscreen={true}` and configured a base URL and can reproduce the bug. Here's the repo (with VS Code prerender launch configured):...
Hi! Thanks for the quick response. I've created a repro with a commit for each step below: https://github.com/tricki/stencil-event-build-error While creating the minimal repro I found that the problem is something...
Great, thanks. Note that this doesn't have a high priority for me as I used a work-around. I think there are some similar issues but I could only find this...
There is a repro case in the original issue: https://github.com/xvs32x/port-stencil I'm having the same problem with Stencil 2.8.0 and axios 0.21.3
I did some debugging and the problem seems to be that `MockAnchorElement` objects don't have a `pathname` property: ```js var urlParsingNode = document.createElement('a'); // urlParsingNode provides the UrlUtils interface -...
I created a pull request for adding `pathname`. Not sure if it's how you meant it @splitinfinities, if not just ping me. Unfortunately Axios will still not work during prerender...
Good catch. It might be related to https://github.com/axios/axios/issues/2731
I just did a quick test and found a way to work around this. It's not a real solution but might help someone else debug the issue. **What I did:**...