Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ import { remarkWikiLink } from "./src/plugins/remark-wiki-link";
// https://astro.build/config
export default defineConfig({
site: "https://maggieappleton.com",
// Server mode with static as default - allows /edit/* pages to be dynamic
// Most pages prerender by default; specific pages opt-out with prerender = false
output: "server",

Copilot AI Jan 2, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment states this is for dev-only pages, but setting output to "server" affects the entire site's build strategy. This means all pages now require a Node.js server in production unless explicitly marked with prerender = true. Ensure this aligns with your deployment infrastructure, and consider documenting the deployment requirements (Node.js server vs static hosting).

Suggested change
output: "server",
output: "hybrid",

Copilot uses AI. Check for mistakes.
image: {
domains: ["res.cloudinary.com"],
},
Expand Down
Loading