managarten/apps/bauntown/apps/landing/astro.config.mjs
Till JS 928d88aabd feat(bauntown): restore from archive, register in monorepo
- Move from apps-archived/ to apps/ (last archived app)
- Fix root package.json name to @manacore/bauntown
- Add to root CLAUDE.md project table
- Astro landing page with i18n (DE/EN/IT), Stripe, Netlify preserved

apps-archived/ is now empty — all 5 apps restored:
uload, news, wisekeep, reader, bauntown

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 01:02:21 +02:00

28 lines
516 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,
}),
});