For the past couple of days, I've been stuck on this issue and any help would be greatly appreciated. Thank you in advance!
If necessary, I can provide additional code snippets.
I am currently working on a project using nextjs with src. I'm trying to create my own route, but I'm encountering this specific problem.
Whenever I enter my email and click 'continue', it triggers an error.
import { SignIn } from "@clerk/nextjs";
import React from "react";
const SignInPage = () => {
return (
<>
<SignIn />
</>
);
};
export default SignInPage;