Compare commits

..
Author SHA1 Message Date
legonzaur d030c8e88a attempt to fix stun not appearinng
release-tag / release-image (push) Successful in 33s
2024-12-21 19:59:46 +01:00
legonzaur 68ffb4ba08 fix : attempt to bring back images
release-tag / release-image (push) Successful in 29s
2024-12-21 19:26:48 +01:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ const currentTeam = computed(() =>
const isPlayerTurn = computed(() =>
currentTeam.value?.players.some(
(p) => p.user.userId == authStore.selfUser.userId
(p) => p._id == selfPlayer.value?._id
)
);
+2 -2
View File
@@ -4,7 +4,7 @@ export const cards = {} as Record<string, Component>;
export const tokens = {} as Record<string, Component>;
export async function compileCards() {
const svgs = import.meta.glob("./assets/images/cards/heron-svg/*.svg", {
const svgs = import.meta.glob("@/assets/images/cards/heron-svg/*.svg", {
eager: true,
});
@@ -64,7 +64,7 @@ export async function compileCards() {
}
export async function compileTokens() {
const svgs = import.meta.glob("./assets/images/tokens/*.svg", {
const svgs = import.meta.glob("@/assets/images/tokens/*.svg", {
eager: true,
});