From d7c46a9eae28046bb26da182abc298dc18ed5a10 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 23 Mar 2025 01:39:11 -0400 Subject: Replacing Astro with Next.JS; Prefix warning; Consistent env vars --- web/astro.config.mjs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 web/astro.config.mjs (limited to 'web/astro.config.mjs') diff --git a/web/astro.config.mjs b/web/astro.config.mjs deleted file mode 100644 index d32e23b..0000000 --- a/web/astro.config.mjs +++ /dev/null @@ -1,21 +0,0 @@ -// @ts-check -import { defineConfig, envField } from 'astro/config'; - -import react from '@astrojs/react'; - -import node from '@astrojs/node'; - -// https://astro.build/config -export default defineConfig({ - integrations: [react()], - - adapter: node({ - mode: 'standalone' - }), - - env: { - schema: { - API_URL: envField.string({ context: 'client', access: 'public' }), - } - } -}); -- cgit v1.2.3