SvelteKitError: Not found: /api/auth/sign-up/email
I'm using SvelteKit, and I encounter the following error when trying to sign up with email:
SvelteKitError: Not found: /api/auth/sign-up/email.
I have hooks.server.ts inside the src folder, and auth.ts and auth-client.ts inside lib. How can I fix this?

Solution:Jump to solution
I implemented it in Sveltekit like this
hooks.server.ts
```ts
import type { Handle, RequestEvent } from '@sveltejs/kit';...
2 Replies
Solution
I implemented it in Sveltekit like this
hooks.server.ts
Ok so it should be
hooks.server.ts ✅
hook.server.ts ❌
in the image you shared you have a file naming typo