ci: update deploy github

This commit is contained in:
Alejandro Laguna
2025-08-25 19:44:50 +02:00
parent 2284eefae3
commit da6b5ba46e
2 changed files with 54 additions and 3 deletions

View File

@@ -2,14 +2,15 @@
import { defineConfig } from 'astro/config';
import tailwindcss from "@tailwindcss/vite";
import astroIcon from "astro-icon"
import cloudflare from '@astrojs/cloudflare';
// https://astro.build/config
export default defineConfig({
vite: { plugins: [tailwindcss()], },
integrations: [astroIcon()],
site: 'https://alejandrolaguna.dev',
base: "/",
output: "static",
server: {
host: '0.0.0.0'
host: '0.0.0.0',
},
adapter: cloudflare(),
});