mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
24 lines
519 B
JavaScript
24 lines
519 B
JavaScript
// source.config.ts
|
|
import { defineDocs, defineConfig } from "fumadocs-mdx/config";
|
|
var docs = defineDocs({
|
|
dir: "docs",
|
|
docs: {
|
|
files: [
|
|
"./getting-started/**/*.md",
|
|
"./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
|
|
};
|