you are doing a really good job in communicating these, appreciated.
@rahmatsulistio Жыл бұрын
I need more short tutorial like this 🔥🔥
@agus-wesly Жыл бұрын
I love this pattern. It looks convenient and clean. I will use this in my next remix projects
@shivamjhaa Жыл бұрын
I am really liking these videos Ryan. Bring them on!!!
@frozen_tortus Жыл бұрын
I love this... Exactly what I was looking for other day.
@abdelhameedhamdy Жыл бұрын
These small video snippets are better than long videos.
@HerrSiering Жыл бұрын
Quick question. Why don’t you use the json function in the action return? I kind of got used to that and was wondering why it is not used here. 2:31
@vankatad10 ай бұрын
Remix automatically uses the json function when returning from action and loader. You explicitly use it when you wanna pass options
@massand3r Жыл бұрын
really like such guides. btw what is this theme? looks amazing
@raves_r31774 ай бұрын
what if you want to add layout route to /signup ?
@zunnoorainrafi5985 Жыл бұрын
Please make video on OAuth authentication using remix
@ThaRealIansanity Жыл бұрын
If I have more than one route like posts/index posts/new, posts/$slug and want to put them all inside a posts folder I still need to use remix-flat-routes package right? That is what I'm doing now. Is something like this possible in remix without the remix-flat-routes package?
@Kiliman3970 Жыл бұрын
No. Currently the `v2` routing convention only supports folders for collocation like Ryan is doing here. It doesn't support folder for nesting. `remix-flat-routes` supports nesting using the _hybrid_ routing convention. So `v2` is `posts._index/route.tsx`, `posts.new/route.tsx`, etc. And `remix-flat-routes` can be `posts+/_index/route.tsx`, etc.
@twitchizle Жыл бұрын
do we still have to put .server suffix to validate file to not leak it to client?
@Remix-Run Жыл бұрын
We encourage using the .server for any code meant only for the server remix.run/docs/en/main/file-conventions/-server
@alexmalinin2387 Жыл бұрын
Why we can't go more than one besting level? It's really confusing
@IvanKleshnin10 ай бұрын
To not end up with NextJS-like nesting mess?
@eleah2665 Жыл бұрын
Cool. Thanks.
@dodyprass Жыл бұрын
🔥🔥
@omarcardenas3728 Жыл бұрын
🔥
@jackjsy Жыл бұрын
Rename the "signup.tsx" file to "signup/route.tsx" file to create the directory at the same time