Frontend WASM compilado + fixes PartialEq + uuid js feature
Build & Deploy NutriApp / build-and-deploy (push) Failing after 7m12s

This commit is contained in:
2026-06-27 02:40:53 +01:00
parent 7dc3050519
commit 0238518822
15 changed files with 6686 additions and 8 deletions
@@ -0,0 +1,9 @@
export function getMetaContents(meta_name) {
const selector = document.querySelector(`meta[name="${meta_name}"]`);
if (!selector) {
return null;
}
return selector.content;
}