From 77fceeead17f8509a1c0f3438d0a105f8894ee95 Mon Sep 17 00:00:00 2001 From: Ruidy Date: Sat, 6 Sep 2025 18:12:46 -0400 Subject: [PATCH] chore(netlify): use Node 24 for Astro build --- netlify.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..c5f04b0 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,8 @@ +[build] +# Use pnpm via Corepack and build Astro to static `dist/`. +command = "corepack enable && pnpm install --frozen-lockfile && pnpm build" +publish = "dist" + +[build.environment] +# Ensure Node 24 for Astro/Tailwind. +NODE_VERSION = "24"