- removed .vscode from .gitignore to resolve #13

- updated libraries to further support #14
- feat: Add environment configuration files and update dependencies for Node adapter
This commit is contained in:
GitHub Copilot
2025-05-01 21:03:09 +00:00
parent 6b55395e73
commit 8058df41fd
7 changed files with 220 additions and 4 deletions

View File

@@ -1,14 +1,16 @@
// @ts-check
import { defineConfig } from 'astro/config';
import cloudflare from '@astrojs/cloudflare';
import node from '@astrojs/node'; // Import Node adapter
import react from '@astrojs/react';
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: cloudflare(),
adapter: node({
mode: 'standalone'
}),
integrations: [react()],
vite: {
resolve: {