refactor: move frontend code into view

This commit is contained in:
syntaxbullet
2026-07-02 22:50:58 +02:00
parent f9ec3e5528
commit 64838e85ba
11 changed files with 8 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ import path from "node:path";
const outdir = path.join(process.cwd(), "dist");
await rm(outdir, { recursive: true, force: true });
const entrypoints = [...new Bun.Glob("src/**/*.html").scanSync()];
const entrypoints = [...new Bun.Glob("view/**/*.html").scanSync()];
const result = await Bun.build({
entrypoints,