Skip to content

Commit 41778d7

Browse files
author
Tom
committed
fix wrong baseurl
1 parent 854cc85 commit 41778d7

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Deploy Backend](https://github.com/yuru-baku/InfintyDeck/actions/workflows/main_infinitydeck.yml/badge.svg)](https://github.com/yuru-baku/InfintyDeck/actions/workflows/main_infinitydeck.yml)
2-
[![Deploy Frontend](https://github.com/yuru-baku/InfintyDeck/actions/workflows/deploy-vue_config.yml/badge.svg)](https://github.com/yuru-baku/InfintyDeck/actions/workflows/deploy-vue_config.yml)
1+
[![Deploy Backend](https://github.com/yuru-baku/infinityDeck/actions/workflows/main_infinitydeck.yml/badge.svg)](https://github.com/yuru-baku/infinityDeck/actions/workflows/main_infinitydeck.yml)
2+
[![Deploy Frontend](https://github.com/yuru-baku/infinityDeck/actions/workflows/deploy-vue_config.yml/badge.svg)](https://github.com/yuru-baku/infinityDeck/actions/workflows/deploy-vue_config.yml)
33
# Links:
4-
[Live Page](https://yuru-baku.github.io/InfintyDeck/)
4+
[Live Page](https://yuru-baku.github.io/infinityDeck/)
55
[Kanban](https://miro.com/welcomeonboard/Y0pHWlpaUjEwR0RYSjBvZjFmMDYwcXRKRVhmY2M2a2FKY0ZJdFRvOU1qM01qVTUyRzdkbHVJTnc4TmhZa0RJQ3wzNDU4NzY0NTc0NzE4Mzk3MjYyfDI=?share_link_id=690598034590)
66

77
# Syncing Cards

frontend-vue/src/model/game.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ export const GAME_CONFIG: {
1515
Uno: {
1616
label: 'Uno',
1717
id: 'Uno',
18-
basePath: '/InfintyDeck/cardImages/uno-cards',
19-
cardBack: '/InfintyDeck/cardImages/uno-cards/back.svg'
18+
basePath: '/infinityDeck/cardImages/uno-cards',
19+
cardBack: '/infinityDeck/cardImages/uno-cards/back.svg'
2020
},
2121
MauMau: {
2222
label: 'french',
2323
id: 'MauMau',
24-
basePath: '/InfintyDeck/cardImages/french-suited-cards',
25-
cardBack: '/InfintyDeck/cardImages/french-suited-cards/card-back-blue.svg'
24+
basePath: '/infinityDeck/cardImages/french-suited-cards',
25+
cardBack: '/infinityDeck/cardImages/french-suited-cards/card-back-blue.svg'
2626
}
2727
};

frontend-vue/src/services/CardService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class CardService {
1616

1717
constructor(conService: ConnectionService) {
1818
this.conSerivce = conService;
19-
this.cardBack = 'url(./InfintyDeck/cardImages/french-suited-cards/card-back-blue.svg)';
19+
this.cardBack = 'url(./infinityDeck/cardImages/french-suited-cards/card-back-blue.svg)';
2020
this.numberOfCards = 0;
2121
this.markerMap = new Map<string, Card>();
2222
this.cardCallbacks = new Map<string, Function>();

frontend-vue/src/views/LobbyCreaterView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ onUnmounted(() => {
7676
recommend you to print them on an A4-paper.
7777
</p>
7878
</div>
79-
<a href="/InfintyDeck/markers.pdf" target="_blank" class="button"
79+
<a href="/infinityDeck/markers.pdf" target="_blank" class="button"
8080
>Print the Cards</a
8181
>
8282
</div>

frontend-vue/vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import vue from '@vitejs/plugin-vue'
55

66
// https://vitejs.dev/config/
77
export default defineConfig({
8-
base: '/InfintyDeck',
8+
base: '/infinityDeck',
99
plugins: [
1010
vue({
1111
template: {

frontend-vue/vite.config.ts.timestamp-1710687303989-00cfc4888f66a.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// vite.config.ts
22
import { fileURLToPath, URL } from "node:url";
3-
import { defineConfig } from "file:///D:/Development/InfintyDeck/frontend-vue/node_modules/vite/dist/node/index.js";
4-
import vue from "file:///D:/Development/InfintyDeck/frontend-vue/node_modules/@vitejs/plugin-vue/dist/index.mjs";
5-
var __vite_injected_original_import_meta_url = "file:///D:/Development/InfintyDeck/frontend-vue/vite.config.ts";
3+
import { defineConfig } from "file:///D:/Development/infinityDeck/frontend-vue/node_modules/vite/dist/node/index.js";
4+
import vue from "file:///D:/Development/infinityDeck/frontend-vue/node_modules/@vitejs/plugin-vue/dist/index.mjs";
5+
var __vite_injected_original_import_meta_url = "file:///D:/Development/infinityDeck/frontend-vue/vite.config.ts";
66
var vite_config_default = defineConfig({
7-
base: "/InfintyDeck",
7+
base: "/infinityDeck",
88
plugins: [
99
vue({
1010
template: {

0 commit comments

Comments
 (0)