ci: fix deployment

This commit is contained in:
Alejandro Laguna
2025-08-03 17:25:45 +02:00
parent e481a15f39
commit b70989e704
3 changed files with 1010 additions and 6 deletions

View File

@@ -3,8 +3,16 @@ import { defineConfig } from 'astro/config';
import tailwindcss from "@tailwindcss/vite"; import tailwindcss from "@tailwindcss/vite";
import astroIcon from "astro-icon" import astroIcon from "astro-icon"
import node from "@astrojs/node";
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
vite: { plugins: [tailwindcss()], }, vite: { plugins: [tailwindcss()], },
integrations: [astroIcon()], integrations: [astroIcon()],
server: {
host: '0.0.0.0'
},
adapter: node({
mode: "standalone",
}),
}); });

999
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -6,14 +6,17 @@
"dev": "astro dev", "dev": "astro dev",
"build": "astro build", "build": "astro build",
"preview": "astro preview", "preview": "astro preview",
"astro": "astro" "astro": "astro",
"start": "node ./dist/server/entry.mjs"
}, },
"dependencies": { "dependencies": {
"@astrojs/node": "^9.3.3",
"@tailwindcss/vite": "^4.1.11", "@tailwindcss/vite": "^4.1.11",
"astro": "^5.12.8", "astro": "^5.12.8",
"astro-icon": "^1.1.5", "astro-icon": "^1.1.5",
"lucide-astro": "^0.536.0", "lucide-astro": "^0.536.0",
"lucide-react": "^0.536.0", "lucide-react": "^0.536.0",
"serve": "^14.2.4",
"tailwindcss": "^4.1.11" "tailwindcss": "^4.1.11"
} }
} }