refactor: Update devcontainer and configuration files for improved formatting and linting, corrected access to ssh keys (ref: #14)

This commit is contained in:
GitHub Copilot
2025-05-02 11:07:35 +00:00
parent 075cbe1e12
commit d8a70e0f08
3 changed files with 21 additions and 17 deletions

View File

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