aboutsummaryrefslogtreecommitdiff
path: root/web/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'web/astro.config.mjs')
-rw-r--r--web/astro.config.mjs21
1 files changed, 0 insertions, 21 deletions
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' }),
- }
- }
-});