Some checks are pending
CI / validate (push) Waiting to run
Astro-Landing als neuer Apex-Container (:3202), gebaut mit @mana/marketing-kit. Probe-Cutover der Welle-1-Charge (niedrigstes Compliance-Risiko, höchste Ship-Reife). Anki-Migration als Akquise-Anker; /anki-import als dedicated Long-Tail-Page mit 3-Schritt-Anleitung + FAQ + JSON-LD FAQPage (Sitemap-Priorität 0.95). - apps/landing/ — index, anki-import, ueber, mitwirken + robots/llms/sitemap-Endpoints - infrastructure/macmini/docker-compose.landing.yml — Port 3202 - .gitignore += .astro Cutover-Playbook: mana/docs/playbooks/LANDING_CUTOVER.md Domain-Status: wordeck.com → :3202 (Marketing, NEU) www.wordeck.com → :3202 (Marketing, NEU) app.wordeck.com → :5181 (Web-App, NEU als Subdomain) api.wordeck.com → :3191 (API, unverändert) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
14 lines
357 B
JavaScript
14 lines
357 B
JavaScript
import { defineConfig } from 'astro/config'
|
|
|
|
// wordeck-Marketing-Landing.
|
|
//
|
|
// Statisch, prerendered. Apex `wordeck.com` serviert das Build-Output;
|
|
// `app.wordeck.com` läuft separat (SvelteKit-App in `apps/web/`).
|
|
export default defineConfig({
|
|
site: 'https://wordeck.com',
|
|
output: 'static',
|
|
trailingSlash: 'never',
|
|
build: {
|
|
format: 'file',
|
|
},
|
|
})
|