mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 12:43:39 +02:00
- 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>
28 lines
516 B
JavaScript
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,
|
|
}),
|
|
});
|