mirror of
https://github.com/Vale54321/schafkopf-bot.git
synced 2025-12-15 19:29:33 +01:00
split Project into multiple Modules to prepare for development of Servers
This commit is contained in:
committed by
GitHub
parent
949c00bb28
commit
c94127acf1
@@ -5,7 +5,7 @@
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vue-tsc && vite build",
|
||||
"build": "vue-tsc && vite build --emptyOutDir",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -134,20 +134,20 @@ onMounted(() => {
|
||||
<div class="flex gap-2 place-content-center">
|
||||
<button @click="setGame('setgame:sauspiel')">Sauspiel</button>
|
||||
|
||||
<button @click="setGame('setgame:herzsolo')">herzsolo</button>
|
||||
<button @click="setGame('setgame:eichelsolo')">eichelsolo</button>
|
||||
<button @click="setGame('setgame:blattsolo')">blattsolo</button>
|
||||
<button @click="setGame('setgame:schellsolo')">schellsolo</button>
|
||||
<!-- <button @click="setGame('setgame:herzsolo')">herzsolo</button>-->
|
||||
<!-- <button @click="setGame('setgame:eichelsolo')">eichelsolo</button>-->
|
||||
<!-- <button @click="setGame('setgame:blattsolo')">blattsolo</button>-->
|
||||
<!-- <button @click="setGame('setgame:schellsolo')">schellsolo</button>-->
|
||||
|
||||
<button @click="setGame('setgame:eichelwenz')">eichelwenz</button>
|
||||
<button @click="setGame('setgame:blattwenz')">blattwenz</button>
|
||||
<button @click="setGame('setgame:herzwenz')">herzwenz</button>
|
||||
<button @click="setGame('setgame:schellwenz')">schellwenz</button>
|
||||
<!-- <button @click="setGame('setgame:eichelwenz')">eichelwenz</button>-->
|
||||
<!-- <button @click="setGame('setgame:blattwenz')">blattwenz</button>-->
|
||||
<!-- <button @click="setGame('setgame:herzwenz')">herzwenz</button>-->
|
||||
<!-- <button @click="setGame('setgame:schellwenz')">schellwenz</button>-->
|
||||
|
||||
<button @click="setGame('setgame:eichelgeier')">eichelgeier</button>
|
||||
<button @click="setGame('setgame:blattgeier')">blattgeier</button>
|
||||
<button @click="setGame('setgame:herzgeier')">herzgeier</button>
|
||||
<button @click="setGame('setgame:schellgeier')">schellgeier</button>
|
||||
<!-- <button @click="setGame('setgame:eichelgeier')">eichelgeier</button>-->
|
||||
<!-- <button @click="setGame('setgame:blattgeier')">blattgeier</button>-->
|
||||
<!-- <button @click="setGame('setgame:herzgeier')">herzgeier</button>-->
|
||||
<!-- <button @click="setGame('setgame:schellgeier')">schellgeier</button>-->
|
||||
|
||||
<button @click="setGame('setgame:geier')">Geier</button>
|
||||
<button @click="setGame('setgame:wenz')">Wenz</button>
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import {defineConfig} from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
plugins: [vue()],
|
||||
build: {
|
||||
outDir: '../Backend/src/main/resources/web-content',
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user