mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:01:08 +02:00
- shared-auth-stores: delete createSupabaseAuthStore (zero usage across monorepo, all apps use createManaAuthStore). Remove export + types from index.ts. - services: move ollama-metrics-proxy (stub — just a Grafana dashboard JSON) and it-landing (Astro landing page, not a service) to services-archived/ - lint-staged: add services-archived/ to eslint ignore pattern Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
342 B
JavaScript
15 lines
342 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
export default defineConfig({
|
|
site: 'https://it.mana.how',
|
|
integrations: [tailwind(), sitemap()],
|
|
i18n: {
|
|
defaultLocale: 'de',
|
|
locales: ['de', 'en'],
|
|
routing: {
|
|
prefixDefaultLocale: false,
|
|
},
|
|
},
|
|
});
|