Merge remote-tracking branch 'origin/staging-render' into niwinz-develop-merge

This commit is contained in:
Andrey Antukh
2025-12-10 13:53:15 +01:00
26 changed files with 784 additions and 190 deletions

View File

@@ -181,8 +181,8 @@ export async function watch(baseDir, predicate, callback) {
});
}
async function readManifestFile() {
const manifestPath = "resources/public/js/manifest.json";
async function readManifestFile(resource) {
const manifestPath = "resources/public/" + resource;
let content = await fs.readFile(manifestPath, { encoding: "utf8" });
return JSON.parse(content);
}