☕ If you liked this video and want to support my channel, please consider buying me a coffee. Your contribution helps me create more content like this: 👉 Buy Me a Coffee: www.buymeacoffee.com/andrey.fadeev 👉 Ko-fi: ko-fi.com/andreyfadeev Please also subscribe to my other resources: 👉 Substack: blog.andreyfadeev.com 👉 Telegram: t.me/andreyfadeevchannel I'm truly grateful for your support, and thank you for watching! 🙏
Brilliant tutorial. Your pace and presentation is perfect, but especially appreciate the way you reference documentation along with the tutorial. Keep them coming just like this.
thanks for your great tutorial , your code in github had the following problem : emailVerified' does not exist on type 'User'." and I added the below code and it is solved : declare module "lucia" { interface User { email: string; emailVerified: boolean; } }
☕ If you liked this video and want to support my channel, please consider buying me a coffee. Your contribution helps me create more content like this:
👉 Buy Me a Coffee: www.buymeacoffee.com/andrey.fadeev
👉 Ko-fi: ko-fi.com/andreyfadeev
Please also subscribe to my other resources:
👉 Substack: blog.andreyfadeev.com
👉 Telegram: t.me/andreyfadeevchannel
I'm truly grateful for your support, and thank you for watching! 🙏
Brilliant tutorial. Your pace and presentation is perfect, but especially appreciate the way you reference documentation along with the tutorial. Keep them coming just like this.
Great tutorial. It would be great that in the future you place everything in a folder and its own file but great over view
What window manager do you have ?, is amazing the way that you have organized the windows 🤩
Hi, it is yabai :)
can you share vscode settings? looks so nice
the trick is that it's not vscode :) It is Zed
Great work here! Can I request? Maybe like a full-stack app with NextJS or something. :>
thanks for your great tutorial , your code in github had the following problem :
emailVerified' does not exist on type 'User'."
and I added the below code and it is solved :
declare module "lucia" {
interface User {
email: string;
emailVerified: boolean;
}
}