Title.
I’m going to use svelte and sveltekit. Most likely tailwind. Zod for validation.
Any tips and tricks/ideas, pits to watch for before I commit heavily into falling into them.
This project could potentially be in vue/react but in my opinion svelte is more appealing to me (specially because of stores)
Learn about hooks if you need validation on page navigations
Could you explain an use case. I don’t understand what would need to be validated when navigating.
This is more protecting data.
For example if you have a page that only certain users can view. You can create a hook to validate their credentials every time they visit that page and redirect them out if necessary.
Oh so authentication, I was thinking form validation. Interesting.