chore: восстановление репозитория из снапшота v0.3.1
Прежняя git-история утрачена при переносе проекта на машину владельца (снапшот без .git). Хэши коммитов в docs/reports/* относятся к утраченной истории. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
commit
1c85091186
184 changed files with 33303 additions and 0 deletions
17
apps/web/astro.config.mjs
Normal file
17
apps/web/astro.config.mjs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
// Статическая сборка без адаптеров: сайт целиком клиентский (ADR-0001).
|
||||
// build.format 'file': страницы как play.html, а не play/index.html —
|
||||
// работает на любом статическом сервере без directory index (превью, Apache).
|
||||
export default defineConfig({
|
||||
output: 'static',
|
||||
build: { format: 'file' },
|
||||
markdown: {
|
||||
shikiConfig: {
|
||||
// Светлая тема подсветки под дизайн «васи» (этап 10): ASCII-диаграммы
|
||||
// уроков рендерятся shiki, тёмная тема по умолчанию ломала .lesson-body pre.
|
||||
theme: 'github-light',
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue