mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
Release v3.8.24 — see CHANGELOG.md [3.8.24] for the full notes and the PR description for the contributors hall. Integration of release/v3.8.24 into main.
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
|
|
};
|