Dinesh Pandiyan
Dinesh Pandiyan
You're right. I agree that this project should hightlight the use of `.npmrc` file. Feel free to create a PR or I can get to it in the next few...
This lib is not SSR ready yet. Maybe we should to add something to support SSR.
Thank you. I'll try to smash some code soon to get this to work with SSR.
Changing the next version to `12.2.4` using yarn `resolutions` fixes this issue. Add this to your `package.json`. _Note: resolutions will only work with yarn_. ``` "resolutions": { "next": "12.2.4" }...
To anyone who's looking for an interim solution to prevent re-rendering of components using `useNavigate()` and `useLocation()` I've got something I've been using for a while now. ```jsx import React...
Looks like [Segment Config](https://beta.nextjs.org/docs/api-reference/segment-config#revalidate) is what I want. Thanks for pointing out @diegohaz. Hopefully it will work the same as omitting `revalidate` in `getStaticProps` and manually revalidating the cache from...
We have a schema extension guide now https://keystonejs.com/docs/guides/schema-extension. Gonna close this PR now.
Keystone server hot reloads in dev mode when you make changes. So if you have to initialise something only once it needs to be included in `db.onConnect` method. More here...
It's not @quantran020173. If you don't want to write a lot of code inside onConnect to keep your file readable you could write your code in another file and import...
Hey @shendrick! Thanks for sending the pull request. This looks more like an example of how to consume a GraphQL API in an app created with CRA and apollo client....