mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-20 08:03:37 +02:00
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
export default defineConfig({
|
|
site: 'https://chat.manacore.app',
|
|
integrations: [
|
|
tailwind(),
|
|
sitemap()
|
|
]
|
|
});
|