intials app

This commit is contained in:
2025-08-26 15:25:09 -05:00
parent 10b56bf31f
commit d3fd5aa653
59 changed files with 22132 additions and 29 deletions

16
scripts/lstDocCopy.mjs Normal file
View File

@@ -0,0 +1,16 @@
// scripts/lstDocCopy.mjs
import fs from "fs";
import path from "path";
const src = path.resolve("lstDocs/build");
const dest = path.resolve("dist/docs");
// Delete old docs if they exist
if (fs.existsSync(dest)) {
fs.rmSync(dest, { recursive: true, force: true });
}
// Copy everything (not just assets)
fs.cpSync(src, dest, { recursive: true });
console.log(`📄 Copied docs from ${src}${dest}`);