But what about the OPTIONS method not allowed error when on CORS? I keep getting that and can't move on with the new sveltekit (1.x.x) but in the old version prior to that, I don't get the error.
Great video, but there should be one problem with the replacement of http to https. If I have a fetch wich is already using https this would be replaced to httpss, wouldn't it?
Great video as usually. Little remark in your fetch exemple. Replacing ‘http’ with ‘https’ will lead to an error if it’s already https, will result in ‘httpss’. Isn’t better use `replace(‘http:’, ‘https:’)`?
For the html attribut lang="%lang", it works on Firefox, but on chromium browser, it seem to be hardcoded in "en" by the browser. Do you now if we can correct it ? Very nice tutorial by the way !
@@JoyofCodeDev if possible please do it in a shared hosting environment with cpanel , its very Important for me , tried deploying and failed many times.
💬 Discord: discord.gg/k6ZpwAKwwZ
Fantastic video per usual! That FormData idea is next-level!
Damn glad to see you here, you two have literally carried my svelte projects 😆
Both you and joy of code should do a collab project, I would love to see that
Both of you have amazing content
this man right here single-handedly raising a generation of new sveltekit developers! love your content
Wake up, babe, a joy of Code video just dropped
You're a godsend and my go to resource for Svelte. Thank you for covering it and hope you get sponsorship etc. so that you can earn as well. 🙌
Thank you! 😄
Big thanks for the quality of the informations that you're providing !
Great content!
( i've just discovered your channel but it's still relevant ! )
Ngl uopce nisam ocekivao da si Hrvat. Inace odlicni videi. 💯
Hvala! 😀
How Awesome is this!
This is a very useful and helpful lesson, learning how to use hooks file is essential for developing Sveltekit application, thank you 🤗😎😘🙏😌
Amazing video as always. You never miss 🔥🔥
Such an awesome tutorial! Thank you so much! Great content! 😄
thank you i didn't know about the & for changing the value type to boolean for the html forms. thanks!
That's only because of the library I'm using because it parses the form data for you.
Thanks
Thank you! 🙏
came for the thumbnail, stayed for the top-notch content
So it does work! 😄
Great tutorial. Thanks.
Nice explanation..well done.
Super useful! Thanks for sharing.
You're welcome! 😄
Mind blowing 🤯🤩
Awesome, as usual 👌
How you do corner radius on different windows? browser, vs. or its is video edited ?
Thumbnail game on point 😤
Love all your videos, can your next one be on creating an ISR blog with vercel! Would be super useful ❤
That would be cool! 😄
The parseFormData requires remix be installed?
If you're using `pnpm` it doesn't automatically install peer dependencies, so you have to install `@remix-run/web-file`.
you have covered everything
Almost! 😄
If you're leaving page hydration in place, you also need to do the HTML transform in hooks.ts too, corrrect?
If you need to transform HTML before the page is rendered that's how you do it.
amazing
Do you know what the client hook can be used for apart from HandleError? Even Svelte documents don't go through it properly.
That's the only one.
But what about the OPTIONS method not allowed error when on CORS? I keep getting that and can't move on with the new sveltekit (1.x.x) but in the old version prior to that, I don't get the error.
You can get help on Discord: joyofcode.xyz/invite.
@@mikesantiago_ I'm not sure why that is because you should be able to.
Great video, but there should be one problem with the replacement of http to https. If I have a fetch wich is already using https this would be replaced to httpss, wouldn't it?
Yeah! 😄
Great video as usually.
Little remark in your fetch exemple. Replacing ‘http’ with ‘https’ will lead to an error if it’s already https, will result in ‘httpss’. Isn’t better use `replace(‘http:’, ‘https:’)`?
Thank you! 😄 If anyone wants to update the post I would love to accept the changes.
Do have your vscode config with font-style, etc in a gist or something? Would be interested. Btw nice video
+1! Especially interested in the iconset you're using.
I don't but I could make a video on the setup I'm using.
@@JoyofCodeDevWould be great if you would be able to do this! 😁
Great video man, some of what you show is not that clear in the documentation. Thank you
For the html attribut lang="%lang", it works on Firefox, but on chromium browser, it seem to be hardcoded in "en" by the browser. Do you now if we can correct it ?
Very nice tutorial by the way !
I used a Chromium browser, so not sure.
what's the snippet extention You are using ?
You can make snippets in VS Code without an extension but I use Easy Snippet to make it easier.
Please post a video on how to deploy sveltekit with node-adapter in shared hosting that supports nodejs (in my case : a2hosting - turbo plan ).
The next video is on deployment! 😄
@@JoyofCodeDev if possible please do it in a shared hosting environment with cpanel , its very Important for me , tried deploying and failed many times.
Devops for sveltekit with prisma please 🙏🙏🙏
did you know that hooks don 't work in sveltekit with static-adapter ?
Do you offer a svelekit training course?
I plan on making one in the future! 😄
@@JoyofCodeDev Look forward to it.
😍😍😍😍😍
whats your code theme? I like it :)
You can find a link to what I use in the description.
that's really wonderful, but your video makes me more confusing when should i use hooks and when shouldn't
You don't have to think about it until you need it because there's no alternative to what you can do with hooks.
anyone else getting "Property 'user' does not exist on type 'Locals'"?
You need to add types inside `app.d.ts`.