This commit is contained in:
2026-05-12 01:13:01 +02:00
commit bf304e17c9
46 changed files with 4358 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { writeFileSync } from "node:fs";
writeFileSync(
new URL("./dist/manifest.json", import.meta.url),
JSON.stringify(
{
"app.css": "/dist/app.css",
"app.js": "/dist/app.js",
},
null,
2,
),
);