fix: move vercel config to root, use pnpm

This commit is contained in:
Lewis Wynne 2026-01-23 04:49:49 +00:00
parent 1a608358d1
commit d34829c320
4 changed files with 7 additions and 8 deletions

View file

@ -1,5 +1,5 @@
---
title: Hello World
title: hello world
date: 2026-01-01
---

View file

@ -1,6 +1,6 @@
---
title: My Second Post
date: 2025-01-02
title: my second post
date: 2026-01-02
---
Another post to test the listing.

View file

@ -1,5 +0,0 @@
{
"buildCommand": "cd apps/blog && npm install && npx astro build --remote",
"outputDirectory": "apps/blog/dist",
"installCommand": "echo 'skipping root install'"
}

4
vercel.json Normal file
View file

@ -0,0 +1,4 @@
{
"buildCommand": "pnpm --filter @ily/blog build --remote",
"outputDirectory": "apps/blog/dist"
}