How to verify server middleware is running on Netlify

Following a weekend of trial and error to get this going, I’m mostly there, but still can’t tell whether my Nuxt 3 server middleware is actually running. I don’t think it is and I don’t have access to logs to be able to tell.

Then it dawned on me, maybe netlify does not actually support server middleware. The docs i’ve seen are a bit vague.

So, does netlify actually run this server side code???

You’re using nuxt generate which generates a static site and doesn’t add any servers-side functionality. You should use nuxt build. This isn’t a Netlify, but a Nuxt question.