All checks were successful
Build and Deploy Astro Site / deploy (push) Successful in 42s
17 lines
375 B
JavaScript
17 lines
375 B
JavaScript
// @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({
|
|
integrations: [react(), markdoc(), keystatic()],
|
|
|
|
adapter: node({
|
|
mode: 'standalone',
|
|
}),
|
|
}); |