Dinesh Pandiyan

Results 55 comments of Dinesh Pandiyan

@dcousens looks like the examples were renamed in this change 333152e620183f310be892f1c82fbf847b47ecae. This is the updated link now - https://github.com/keystonejs/keystone/tree/main/examples/framework-nextjs-pages-directory.

Hey @joshamos! You need to prevent the default keydown behaviour. You can use the `onKeyDown` prop to customize it. Eg. ``` const keyDownHandler = e => { if (e.key ===...

I'm working on a pretty big next.js app that's on pages router. Our pages would look somewhat like this: ``` my-app/ ├─ src/ │ ├─ pages/ │ │ ├─ foo/...

I just checked in other projects. `@` works and shows up file path suggestions in other projects. For some reason it's not working in this particular project. If it helps,...

I initialised the project into a git repo and now the files autocomplete when using `@`. Is this by design?