mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 16:17:43 +02:00
The production domain is mana.how, not manacore.app. Updated all references across shared-branding APP_URLS, app configs, landing pages, docs, help content, calendar iCal UIDs, and deploy scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8 lines
234 B
JavaScript
8 lines
234 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
export default defineConfig({
|
|
site: 'https://chat.mana.how',
|
|
integrations: [tailwind(), sitemap()],
|
|
});
|