feat: Add new web frontend

This commit is contained in:
Wanjohi
2025-07-17 12:45:55 +03:00
parent b668bd48b9
commit c516af4168
13 changed files with 1124 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
// @ts-check
import { defineConfig } from 'astro/config';
import cloudflare from "@astrojs/cloudflare"
import solidJs from "@astrojs/solid-js";
import config from './config.mjs';
// https://astro.build/config
export default defineConfig({
site: config.url,
adapter: cloudflare({
imageService: "passthrough",
}),
devToolbar: {
enabled: false
},
server: {
host: "0.0.0.0",
},
integrations: [
solidJs()
]
});