In the AWS Amplify dashboard I can't see a way to access my /api/* route logs after deploying a hello world NextJS application. Where would these be located?
Steps:
- init extremely simple helloworld nextjs application with
/api/hello.js
export default (_, res) => res.send("hello world") - Deploy to amplify
- /api/hello returns "hello world"
Can't find the logs for this lambda function nor find it anywhere in AWS or the Amplify dashboard. Even after enabling "Amplify Studio" I can't see it listed under 'Functions' but obviously I can call the endpoint without enabling Amplify Studio at all.
I can see a handler for /api/* in cloudfront distribution but can't find where the handler is.
