mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-13 22:37:29 +00:00
7 lines
334 B
JavaScript
7 lines
334 B
JavaScript
import { accessSync } from "node:fs";
|
|
|
|
for (const file of ["index.html", "public/manifest.webmanifest", "public/icon.svg", "public/service-worker.js", "public/sitemap.xml", "public/blog/rss.xml", "src/main.ts", "src/styles.css"]) {
|
|
accessSync(new URL(`../${file}`, import.meta.url));
|
|
}
|
|
|
|
console.log("logicsrc-web assets verified");
|