Skip to content

Instantly share code, notes, and snippets.

@abitbetterthanyesterday
abitbetterthanyesterday / AuthStack.ts
Last active December 13, 2023 08:28
SST AuthStack with NextJS
// AuthStack.ts
import { Api, Auth, Stack } from "sst/constructs";
export function AuthStack(stack: Stack) {
const auth = new Auth(stack, "auth", {
authenticator: {
handler: "functions/auth.handler",
},
});