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
+4 -1
View File
@@ -6,7 +6,7 @@
<div
class="l-image image rounded"
:style="{
backgroundImage: `url(&quot;${track.image}&quot;)`,
backgroundImage: `url(&quot;${imguri + track.image}&quot;)`,
}"
></div>
</div>
@@ -36,6 +36,9 @@
<script setup lang="ts">
import perks from "../../composables/perks";
import { Track } from "../../interfaces";
import { paths } from "../../config";
const imguri = paths.images.thumb
const putCommas = perks.putCommas;
const props = defineProps<{