mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 05:15:59 +01:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { join } from "path";
|
|
import BuildContext from "./context";
|
|
import buildSwagger from "./swagger";
|
|
|
|
const context: BuildContext = {
|
|
baseDir: join(__dirname, "../../../site")
|
|
};
|
|
|
|
buildSwagger(context);
|