feat(build-docs): copy swagger UI

This commit is contained in:
Elian Doran
2025-11-01 20:03:53 +02:00
parent 27d9ae885f
commit 3f99c8b337
5 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { getAbsoluteFSPath } from "swagger-ui-dist";
import BuildContext from "./context";
import { cpSync, mkdirSync } from "fs";
import { join } from "path";
export default function buildSwagger({ baseDir }: BuildContext) {
const absolutePath = getAbsoluteFSPath();
const targetDir = join(baseDir, "api");
cpSync(absolutePath, targetDir, { recursive: true });
}