Marco Wettstein

Results 325 comments of Marco Wettstein

workaround: ``` import { InjectData } from 'meteor/staringatlights:inject-data'; InjectData.disableInjection = true; FastRender.onPageLoad(async sink => { ... const payload = `${InjectData.encode( sink.request.headers._injectPayload )}`; ```

maybe its somewhat related to https://github.com/abecks/meteor-fast-render/issues/23 but my current workaround in my SSR code: ``` FastRender._mergeFrData( sink.request, FastRender.frContext.get().getData() ) const payload = `${InjectData.encode( sink.request.headers._injectPayload )}`; ```

> @janpio any chance we are going to see this instrumented soon? I think unfortunately we are going to have to move off of Prisma due to this requirement :(...

seems the intercepting routes feature is broken. using `(...)` works however. Be careful when you have a top-level locale. then your path looks something like this: `(...)[locale]/photo/[id]`

hi! the example currently runs with react 18.2.0, so it works. but i know there are issues with react-dnd. unfortunatly the newer react-dnd also caused problems because of ems transition....

not sure if its related to react-dnd which did some quirky things and maybe an update on that might help. ideally you check the project out and add a vite...

> @macrozone I'm keen to help get this fixed as I'm a huge fan of Vite (and am being blocked by this currently). You've mentioned in this and #1190 that...

@zehawki there is a vite example in this mr https://github.com/react-page/react-page/pull/1302, but i did not merge it, because it copied too much code and I did not hear any update however...

> @macrozone I think there was a miscommunication about your expectations for that MR and I never got around to revising it. Vite definitely does not work with this project...

> @macrozone if you see the setup I've shared, its the basic react-page example (https://react-page.github.io/docs/#/quick-start?id=simple-example) + vite, nothing else at all and the issue occurs. best you take @tedtramonte's MR...