managarten/apps-archived/bauntown/apps/landing/astro.config.mjs
Till JS 076e0c843d chore: restore archived apps (bauntown, news, reader, uload, wisekeep)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 01:08:51 +01:00

28 lines
544 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import netlify from '@astrojs/netlify';
import partytown from '@astrojs/partytown';
// https://astro.build/config
export default defineConfig({
integrations: [
mdx(),
partytown({
config: {
forward: ["plausible.io"]
}
})
],
// Content Collections config
markdown: {
shikiConfig: {
theme: 'dracula'
}
},
output: 'server',
adapter: netlify({
imageCDN: true,
edgeMiddleware: true
})
});