Added keystatic
All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 42s

This commit is contained in:
2025-09-02 20:02:14 +02:00
parent 26c2917767
commit b8d43e250a
7 changed files with 3917 additions and 776 deletions

View File

@@ -1,5 +1,17 @@
// @ts-check
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import markdoc from '@astrojs/markdoc';
import keystatic from '@keystatic/astro'
import node from '@astrojs/node';
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [react(), markdoc(), keystatic()],
adapter: node({
mode: 'standalone',
}),
});