Phoscur
Phoscur
For completeness, I'll also drop an example of a `Caddyfile` ``` domain.v6.rocks { tls { # need rsa instead of ed keys because fritzbox only accepts those key_type rsa4096 }...
It might deserve its own issue, however it might be related enough so I'm posting this here first, this appeard after `npm audit fix` to v4.9.6/7: ``` ✘ [ERROR] The...
Dug up this resolution comment (see other resolutions linked in there too): https://github.com/node-fetch/node-fetch/pull/1793#issuecomment-1839050150 Reverted the `node-fetch` upgrade (@ maintainers, please follow up as you like) in favour of overriding the...
Minor version 4 update dropping node
> quick question. if you example. if you remove the logger from attribute changed. does it work? because attribute changed can be called before the element is actually connected. oh...
@deebloo an idea for a solution: ```ts attributeChangedCallback(name = 'lang', oldValue: string, newValue: string) { if (name !== 'lang' || !newValue) { return; } // default inject is not ready:...
Keep it as simple as possible? ;) Yes why not make it a utility function, don't know how big the usecase is. Maybe that reads better, or makes it more...
@deebloo I have a feeling this is what is to be expected. First the HTMLElements are rendered and then they replace the old ones, and that will trigger disconnect and...
Mh. Okay I believe I will go with triggering the clean up (stop Zeitgeber) procedure already in the connectedCallback, so it will be ``` 0. pre connect: clean up or...
Oh wow, `console.log` is not even reliable concerning browsers here... I notice Firefox will actually post the "Zeit Ctx disconnected" before the error... consistently. In meanwhile I found another issue...