fix: add --remote to build script

This commit is contained in:
Lewis Wynne 2026-01-23 04:53:31 +00:00
parent d34829c320
commit c77b1be514
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "astro dev --port 4322", "dev": "astro dev --port 4322",
"build": "astro build", "build": "astro build --remote",
"preview": "astro preview" "preview": "astro preview"
}, },
"dependencies": { "dependencies": {

View file

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