diff options
| author | Joe Carstairs <me@joeac.net> | 2025-12-18 10:58:34 +0000 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2025-12-18 10:58:34 +0000 |
| commit | fcb297637d49e1c53503f1d051639900a219c25f (patch) | |
| tree | 667e08ee6f34da6770a81d6f56ac073e3533119c /package.json | |
| parent | 781af6414e9299fcb16947f39fe972d02062def3 (diff) | |
adds --remote to build command
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json index b385188..8020ef5 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,8 @@ "private": "true", "scripts": { "dev": "cd website && astro dev", - "start": "cd website && astro build && node ./dist/server/entry.mjs", - "build": "cd website && astro build", + "start": "cd website && astro build --remote && node ./dist/server/entry.mjs", + "build": "cd website && astro build --remote", "preview": "cd website && astro preview", "astro": "cd website && astro" }, @@ -11,6 +11,7 @@ "node": "^22.14.0" }, "dependencies": { + "@astrojs/db": "^0.18.3", "@astrojs/mdx": "^4.3.0", "@astrojs/node": "^9.5.1", "@astrojs/rss": "^4.0.10", |
