Cannot parse action at /api/auth/providers also /api/auth/error (Next Auth .vs Cognito AWS)
Hi, I'm trying to integrate Hono.js with my Next.js App using Auth.js and Cognito AWS. I've follow the example repo here: https://github.com/divyam234/next-auth-hono-react, but it seem to not working as expected. This is my implemented code: // ./api.ts import { Hono } from "hono"; import { authHandler, initAuthConfig, verifyAuth } from "@hono/auth-js"; import Cognito from "@auth/core/providers/cognito";
const app = new Hono({ strict: false }).basePath("/");