feat: Configure Astro for Node.js server output with standalone adapter and add a start script.

This commit is contained in:
2026-03-17 00:09:42 -03:00
parent 5aebd44753
commit 64550a7904
3 changed files with 201 additions and 2 deletions

View File

@@ -6,9 +6,11 @@
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview"
"preview": "astro preview",
"start": "node ./dist/server/entry.mjs"
},
"dependencies": {
"@astrojs/node": "^9.5.1",
"astro": "^5.16.7"
},
"devDependencies": {