Questions tagged [fastify-nextjs]

2 questions
0
votes
1 answer

Next.js dynamic path forever loading (hangs)

Today I started writing a small Next.js app. I'm running a custom server using Fastify and the @fastify/nextjs plugin, but am running into issues loading dynamic routes. Here's a snippet of my index.ts: // ... Imports above export const PORT =…
mstephen19
  • 1,733
  • 1
  • 5
  • 20
0
votes
1 answer

how to access payload from fastify-http-proxy in the prehandler hook

I am developing an application where I need to hit this endpoint https://api2.transloadit.com/assemblies to upload a file of any type. I wish to add authentication params from the server before hitting the final endpoint Please Note: It is…