refactor references to use new image server

This commit is contained in:
geoffrey45
2022-05-04 02:34:27 +03:00
parent f1548aee4b
commit 43fc33640d
11 changed files with 66 additions and 34 deletions
+3 -1
View File
@@ -5,7 +5,7 @@
<div
class="image shadow-lg"
:style="{
backgroundImage: `url(&quot;${props.album.image}&quot;)`,
backgroundImage: `url(&quot;${imguri + props.album.image}&quot;)`,
}"
></div>
</div>
@@ -32,7 +32,9 @@ import perks from "../../composables/perks.js";
import { AlbumInfo } from "../../interfaces.js";
import PlayBtnRect from "../shared/PlayBtnRect.vue";
import { playSources } from "../../composables/enums";
import { paths } from "../../config";
const imguri = paths.images.thumb
const props = defineProps<{
album: AlbumInfo;
}>();