mcoms

Results 339 comments of mcoms

Yeah, we'll be using https://www.i18next.com/ for the main site.

Yeah, that could be a solution for now, but I meant something like service workers.

Yes but I mean on Linux, could you test if they were working, on a pre-demos branch? Because on Windows, dxsupport works. Also dxsupport_override.cfg and the "dxsupport" key is used...

They have to be set early in dxsupport, not in a cfg, so it won't work. Also you have to launch with the correct library path on Linux, but maybe...

> Firstly, the main thing to consider is the fact that Vusaline is not simply a config file like mastercomfig is. mastercomfig is not a config file either. It's a...

Fair enough, all I have to say in response is that I would have appreciated hearing at some point that the stability was bad :)

Hitting this as well (it's an important security feature), the easiest way to add support is to add a setNonce API, like this: https://github.com/omgovich/react-colorful/blob/c7e87161d71be9156b0c149d0e110fa24fd7037d/src/hooks/useStyleSheet.ts https://github.com/omgovich/react-colorful/blob/c7e87161d71be9156b0c149d0e110fa24fd7037d/src/utils/nonce.ts

As a workaround: ```js const shadowDom = player.firstElementChild.shadowRoot; const originalStyleBlock = shadowDom.querySelector("style"); const styleBlock = originalStyleBlock.cloneNode(); styleBlock.innerHTML = originalStyleBlock.innerHTML; styleBlock.setAttribute("nonce", getNonce()); shadowDom.insertBefore(styleBlock, shadowDom.firstChild); ```