hello worlds
This commit is contained in:
15
astro.config.mjs
Normal file
15
astro.config.mjs
Normal 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" })
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user