Traffisco
Traffisco
> > Another option is to hard navigate to a dynamic route url, SSR will be dynamic based on that url > > I've said this three times, but it's...
> > You mean this? > > [#80 (comment)](https://github.com/flareact/flareact/discussions/80#discussioncomment-205149) > > The XHR is going to happen whether it is prefetched or not. Prefetching just makes it happen _before_ you...
> > Unless you DON'T use `Link`. Assuming you set the cache parameter, GetEdgeProps will run only once from the worker(you referenced the code yourself) and return cached page version...
> In other words, the props are cached either way, if it's returned in JSON or in HTML, that is irrelevant. What I'm trying to do is not make a...
I saw something about passing isWorker parameter to getEdgeProps(cant find it, sorry). If client lands on a route, you render getEdgeProps from worker, if from client(navigation), you return from getEdgeProps...
Looks like `wrangler publish` have a bug with webpack CopyPlugin https://github.com/flareact/flareact/blob/0d0a8362e754330f21a6235150531d997f487ffd/configs/webpack.worker.config.js#L32 Quick fix is to move file copy from webpack to another place like https://github.com/flareact/flareact/blob/0d0a8362e754330f21a6235150531d997f487ffd/src/bin/flareact.js#L93 I can make a PR...
> @davidbarratt OK I'm working on this! Almost have it 🤞 > > One issue I'm having: I can't pull up the `revalidate` value from `getEdgeProps` without running that method...
Definitely agree. Dev is painfully slow.
> I need some suggestions on this one. Can anyone help? Probably better to just ask ;)
> I currently have an issue were I want the props to be called for again after a period of time. The data may be updating every few minutes in...