mirror of
https://github.com/zadam/trilium.git
synced 2025-11-05 12:55:55 +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);
|