Waldemar Lehner

Results 22 comments of Waldemar Lehner

Soo.. I started the docs locally via `npm run docs:start` and could not replicate. Serving the generated Build with `npm run docs:build` and `npx serve pages/docs/build` , I **managed to...

> This most like has to do with the server-side rendering HTML not being properly updated after reading the filter settings from local storage. Spot on. Switching to a page...

I added a console.log to `ApiItem.tsx` to check the `toc` variable which contains the TOC data with filters applied. On hydration it does have the correct value and gets passed...

![image](https://user-images.githubusercontent.com/27686785/218481970-d9bfdbf2-5a43-4f9e-9440-37df03d34fbc.png) I think this is something on Docusaurus' End. The props are getting passed to their TOC Component correctly, as can be seen by the Debugger on the Right. If...

I managed to hack a ""fix"" for this issue by basically letting the hydrated page ignore the filters on the first run, and then apply filters with `useEffect`. It is…...

Is this resolved via https://github.com/motion-canvas/motion-canvas/commit/4280af3b4b7bd5970fe5e743949a0fcca2c314f3 ?

How do you feel about turning this icon a link to the docs which open in a new tab? It would have the advantage that you can use it while...

What might work is defining a proxy in `vite.config.ts` that does all requests on behalf of the Browser. I would add a new helper utility that wraps a src string,...

![image](https://user-images.githubusercontent.com/27686785/218802494-3e7162a9-6543-484f-ba08-a55083b76ef4.png) ## Proof of Concept works Click to expand / Outdated: I basically implemented a Plugin for Vite which adds some a Middleware to Vite's Server that intercepts any calls...