#Connecting to mongoose with Astro.
3 messages · Page 1 of 1 (latest)
Hey, you can use Prisma with output: 'hybrid' to make Server Routes that would be rendered on-demand. That means you would get Node js bundle instead of static pages and be able to use it to have a database running. Or you could setup a separate backend and use Prisma there while talking to it with fetch https://docs.astro.build/en/guides/endpoints/#server-endpoints-api-routes
Thank you I appreciate it. I will have a look.