major changes:

- resize images to 150x150
- convert them to webp
- use $set to update database
- remove comments in py code
- a whole lot more
This commit is contained in:
geoffrey45
2021-12-19 02:31:17 +03:00
parent 457180ecaf
commit 831b8e7ee2
11 changed files with 65 additions and 79 deletions
+9
View File
@@ -0,0 +1,9 @@
const playAudio = (path) => {
const audio = new Audio("http://127.0.0.1:8901" + path);
audio.addEventListener("canplaythrough", () => {
audio.play();
});
};
export { playAudio };