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
@@ -3,7 +3,7 @@
class="p-header image"
:style="[
{
backgroundImage: `url(${props.info.image})`,
backgroundImage: `url(${imguri + props.info.image})`,
},
]"
>
@@ -45,7 +45,9 @@ import useModalStore from "../../stores/modal";
import Option from "../shared/Option.vue";
import pContext from "../../contexts/playlist";
import useContextStore from "../../stores/context";
import { paths } from "../../config";
const imguri = paths.images.playlist
const context = useContextStore();
const modal = useModalStore();