hello worlds

This commit is contained in:
Holden
2026-06-26 18:11:52 -05:00
commit e208f1ad5a
61 changed files with 15566 additions and 0 deletions

15
astro.config.mjs Normal file
View File

@@ -0,0 +1,15 @@
// @ts-check
import { defineConfig, envField } from 'astro/config';
import cloudflare from '@astrojs/cloudflare';
// https://astro.build/config
export default defineConfig({
adapter: cloudflare(),
env: {
schema: {
TWY_API_URL: envField.string({ context: "server", access: "public", default: "https://api.recroom.baby" }),
TWY_CDN_URL: envField.string({ context: "server", access: "public", default: "https://cdn.recroom.baby" })
}
}
});