khuezy
khuezy
I haven't gotten the need to redirect via `getSSP`, but I'll let you know if I come across this issue when I do. For what it's worth, the docs also...
Yeah Vercel poached our dear boy. I'd recommend using `sst.dev` for your infra and NextjsSite v2 for your nextjs app. It supports latest Nextjs features. https://discord.gg/sst
Hi, if anyone else is interested in deploying on AWS (a lot more flexible/cost-effective than Vercel), consider using SST. The SST team is implementing its own version that's up to...
To add to those resources, if you'd like to get something up and running now, you can use this Construct: https://github.com/jetbridge/cdk-nextjs. `cdk-nextjs-standalone` will incorporate `open-next` once `open-next` is stable. The...
Update: `SST` v2 `NextjsSite` construct has integrated w/ `open-next`. There's still a few things to iron out like `middleware` redirection and `viewer request vs origin request` policy. But for the...
@suil The doc for v2 isn't ready yet, but you can reference it on the `sst2` branch: https://github.com/serverless-stack/sst/tree/sst2/packages/sst/src/constructs example: https://github.com/serverless-stack/sst/tree/sst2/examples/nextjs-app
1. create a new Next.js app npx create-next-app@latest 2. go into the Next.js app and install npm install --save-dev sst@rc 3. add an sst.config.js ```typescript import { NextjsSite } from...
It's probably better to offload the compute to its own service rather than forcing the main app server to handle it... which will block the main server and significantly reduce...
MDX ArgsTable is working for me on the 7.0.0 beta
Might be related to: https://github.com/nextauthjs/next-auth/pull/5561