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
legonzaur b3d535e122 attempt to fix index html
release-tag / release-image (push) Successful in 28s
2024-12-21 19:25:06 +01:00
3 changed files with 5 additions and 5 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
@@ -6,8 +6,8 @@ server {
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html =404;
index lobby/index.html;
try_files $uri $uri/ /lobby/index.html =404;
}
error_page 404 /usr/share/nginx/html/404.html;
+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,
});