exactly what i needed! exactly what I looking for!
@colbyfayock2 күн бұрын
🙌
@hexakodeagency8685 күн бұрын
uncaughtException: Error: Connection terminated unexpectedly at Connection I keep getting the above error after a while for some reason
@ziyadhasen6 күн бұрын
the github url doesnt exist anymore
@aby75486 күн бұрын
I'm getting this error src/app/invoices/[invoiceId]/page.tsx Type error: Type '{ params: { invoiceId: string; }; }' does not satisfy the constraint 'PageProps'. Types of property 'params' are incompatible. Type '{ invoiceId: string; }' is missing the following properties from type 'Promise<any>': then, catch, finally, [Symbol.toStringTag] while building the project
@malcolmllynh89339 күн бұрын
Using Puppeteer with Next.js is great! Does anyone integrate it with HasData for more complex scraping tasks?
@TheEdge9213 күн бұрын
Interesting what could change in such a short period(3 months after upload). Windsurf said the following(why npm run generate doesn't spit out migration files, then advising me to change XATA_DATABASE_URL -> DATABASE_URL where I said I need XATA because a tut.): "However, there's still an issue we need to address. Xata actually isn't compatible with Drizzle's PostgreSQL dialect since Xata has its own database engine and API. This is why the migrations aren't being generated correctly. For Xata, you typically don't need to generate SQL migrations because: Xata manages the database schema through its own platform It uses a schema-less approach where tables and columns are created automatically Changes to the schema are handled through the Xata dashboard or their CLI Instead of using Drizzle with Xata, you should: Use the Xata CLI to manage your database schema Use the @xata.io/client package to interact with your Xata database Would you like me to help you set up the proper Xata configuration instead? That would involve: Removing the Drizzle configuration Setting up the Xata client Creating your schema using Xata's own tools"
@TheEdge9214 күн бұрын
I get @54:07: "npm run generate > [email protected] generate > drizzle-kit generate No config path provided, using default 'drizzle.config.ts' Reading config file 'C:...\invoicing-app\drizzle.config.ts' Please set your XATA_DATABASE_URL" Though my file looks just exactly like yours.
@TheEdge9214 күн бұрын
This is so strange. Copied the drizzle.config code from your github and now it works. Compared the code. It is xactly the same.
@TheEdge9214 күн бұрын
Unfortunately there is no page to be found anymore on drizzle.orm about the contents of the package.json like @53:28
@Shanu.M.l14 күн бұрын
Thanks a lot, i have been trying to fix this for last 2 days
@MegaKingcute14 күн бұрын
my app is not connecting to the xata database
@NavjotSingh-115 күн бұрын
If I am not wrong you are not using sse concept right?
@joannes8615 күн бұрын
It would be nice to have a video about new version 4.0 and the many changes it brings
@sevenmixedfeelings15 күн бұрын
Nah. It doesnt work!!!! {"errorType":"TimeoutError","errorMessage":"Task timed out after 30.00 seconds","trace":[" at new TimeoutError (C:\\Users\\AP\\AppData\\Roaming\ pm\ ode_modules\ etlify-cli\ ode_modules\\lambda-local\\build\\lib\\utils.js:119:28)"," at Context. (C:\\Users\\AP\\AppData\\Roaming\ pm\ ode_modules\ etlify-cli\ ode_modules\\lambda-local\\build\\lib\\context.js:113:19)"," at listOnTimeout (node:internal/timers:581:17)"," at process.processTimers (node:internal/timers:519:7)"]}
@colbyfayock15 күн бұрын
try this: kzbin.info/www/bejne/oYDHeq2ehct_q9E
@averelgr16 күн бұрын
Nice nice nice!!! A question. How to load image????
@marekgacekdev17 күн бұрын
thanks you very much, great tutorial!
@colbyfayock16 күн бұрын
no problem!
@vekinox970417 күн бұрын
Great stuff, was having issues with the React components within my "remote" mdx files :-) But, is there really no way of handling the components dynamically? Do we need to import and specify all the components used in any mdx file in the page.tsx?
@valdas-119 күн бұрын
Hey, great tutorial as always! Could you cover Payload next? I'd love to see an e-commerce site built with Payload and Next.js 15. Thanks.
@inergy20421 күн бұрын
19:19 - In VSCode you can also use the keyboard shortcut to "Save without formatting": Windows = Control/Command + K -> S ... Additionally you can use the Show All Commands to bring up the command palette and search for it: Control/Command + Shift + P, then start to type "save without formatting" and execute from the list Great video, thank you!
@inergy20421 күн бұрын
also, one critique about the video is to add chapters for folks to find the sections a bit easier, or at least reference the timestamps in the description. Thanks again
@ZedTed-u5r23 күн бұрын
Can you do for smartsupp with next app
@vmrsilva26 күн бұрын
Amazing! 🚀🚀🚀
@colbyfayock23 күн бұрын
thank you 🙏
@dinaludagedara520328 күн бұрын
is there a way to make scrollIntoView more smooth ?
@MattRose3000028 күн бұрын
This needs more views. Subscribed!
@colbyfayock28 күн бұрын
thanks 🙏
@MrWhonobody28 күн бұрын
I need more video about this
@CEODeepImpactАй бұрын
First of all I like this tutorial the best. The instructor make it very easy to follow and understand. I'm totally new on react, Next.js. and almost everting use on this tutorial, but able to follow the tutorial without and difficulty. Great tutorial. I follow the tutorial to the part where we add userId field to the table, then fix the action.ts file. (around 2.24 of the video : kzbin.info/www/bejne/g5TaaYCmbbWMi6c) I just can't continue from there, because in line 10 where the video said we don't need to await auth() to access the userId. I just can't access it. Got an error complaining that userId is null when trying to insert the record. (I use not null on the schema) I can get pass that point only with await auth(), otherwise the userId won't be available to use. Did check the documentation on clerk, from what I understand, they said it doesn't need await too. But I can use it only if I put await in front of auth(). Do not know why, but will move forward to the rest of the video for now. Thank you very much for making this video tutorial.
@rohandev16Ай бұрын
why error in this auth.protect(): export default clerkMiddleware((auth, request) => { if(isProtected(request)) { auth().protect() } });
@psyno185619 күн бұрын
do it like this - export default clerkMiddleware(async (auth, req) => { if (isProtectedRoute(req)) await auth.protect() })
@nopefohАй бұрын
this was an excellent tutorial my man
@colbyfayockАй бұрын
thank you!
@woodylucasАй бұрын
Good stuff Colby!
@colbyfayockАй бұрын
thank you!
@amirabasi-hz8gyАй бұрын
Bro it's not sim it is theme
@sohaildarwajkar9979Ай бұрын
First Video related to education that i ever watched in 1x speed..Your way of speaking,teaching and demonstrating is way too captivating.Bless u bro
@colbyfayockАй бұрын
🙏
@bhavyanayak8219Ай бұрын
This is exactly what I was looking for. Thanks man.
@colbyfayockАй бұрын
🙌
@mohamedwafi8948Ай бұрын
Hello, what is the difference between puppeteer and puppeteer core
@adidwhatididАй бұрын
can i use it on react js ?
@colbyfayockАй бұрын
yup! its vanilla JS so it'll work with any platform. i created this hook years ago to use with it, but it hasn't been updated in a while: github.com/colbyfayock/use-snipcart
@Copt774Ай бұрын
Cloudinary is awesome. Pairing these transformation options with user input could be a great way to have a dynamic media library for something like a blog or other site types.
@colbyfayockАй бұрын
i made a google photos clone which sounds somewhat similar, though i didnt add search capabilities in this project: kzbin.info/www/bejne/omiUo4ejlJVlbJI
@SezaiGurleАй бұрын
Literally can not deploy need help asappp @ColbyFayock
@doggydoggy578Ай бұрын
fat
@ThomKnepperАй бұрын
Brilliant, alllll the tutorials on the internet and nobody was using the actual dialog element properly yet. Thanks, this makes perfect sense now!
@colbyfayockАй бұрын
no problem!
@club-euforiaАй бұрын
awesome video! tksm
@victora.duenasrobles7325Ай бұрын
You saved my day :D
@colbyfayockАй бұрын
🫡
@stefanofattori89Ай бұрын
how do this in a WordPress plugin with react and using fetch-api? for example loading WP Posts
@pako4555Ай бұрын
but it works with localhost:3000/invoices/40jghg
@onlinehome_nepalАй бұрын
fuck man , it is so hard ,
@mzafarrАй бұрын
pwa tutorial please
@hookerhillstudiosАй бұрын
🔥🔥
@CarlosTello-h5sАй бұрын
looks great!
@colbyfayockАй бұрын
thanks 🙌
@ahmedabdelmeguid1131Ай бұрын
perfect video ,we need more videos like this in next.js and react
@colbyfayockАй бұрын
thanks 🙏
@Gabriel-kl6btАй бұрын
Why won't your code show errors I am facing when using server actions?
@manuelvaal1257Ай бұрын
Great one!
@colbyfayockАй бұрын
thanks!
@omniadarweesh2013Ай бұрын
Thank you xoxo
@colbyfayockАй бұрын
🫶
@TheNaiveАй бұрын
why not use the blocknote novel is Brocken documentation is broken