fix: serve coolify build without vite host guard

This commit is contained in:
9a0ffedc5b31823b
2026-05-02 23:15:00 +00:00
parent 6b325702b1
commit 85fff2aea8
3 changed files with 126 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"start": "astro preview --host 0.0.0.0 --port ${PORT:-4321}",
"start": "sirv dist --host 0.0.0.0 --port ${PORT:-4321}",
"test": "vitest run"
},
"dependencies": {
@@ -15,6 +15,7 @@
"@astrojs/tailwind": "^5.1.2",
"@fontsource/geist-sans": "^5.1.0",
"astro": "^4.16.18",
"sirv-cli": "^3.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},