Setting the file. One moment.
Chapter 12 · Clerk Astro Patterns
Subchapter 12.6
Also bundled
Evalstemplates/astro-basic-auth/astro.config.mjs
JavaScript9 lines229 B
import { defineConfig } from "astro/config"
import node from "@astrojs/node"
import clerk from "@clerk/astro"
export default defineConfig({
integrations: [clerk()],
adapter: node({ mode: "standalone" }),
output: "server",
})