mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-01 04:42:10 +03:00
- Remove internal quality-gate planning docs (PLANO-*, RELATORIO-*), openspec/superpowers/spec working notes, and a stale fixes doc that should not ship with the release. - Drop the getting-started glob from the fumadocs source config. - Add the [3.8.24] section stub to the 41 i18n CHANGELOG mirrors so the docs-sync gate is consistent (the EN CHANGELOG already had it).
23 lines
484 B
JavaScript
23 lines
484 B
JavaScript
// source.config.ts
|
|
import { defineDocs, defineConfig } from "fumadocs-mdx/config";
|
|
var docs = defineDocs({
|
|
dir: "docs",
|
|
docs: {
|
|
files: [
|
|
"./architecture/**/*.md",
|
|
"./guides/**/*.md",
|
|
"./reference/**/*.md",
|
|
"./frameworks/**/*.md",
|
|
"./routing/**/*.md",
|
|
"./security/**/*.md",
|
|
"./compression/**/*.md",
|
|
"./ops/**/*.md"
|
|
]
|
|
}
|
|
});
|
|
var source_config_default = defineConfig();
|
|
export {
|
|
source_config_default as default,
|
|
docs
|
|
};
|