add workflow
Some checks failed
Release Build / build-docker (push) Failing after 1m1s
Release Build / build-android-and-release (push) Has been skipped

This commit is contained in:
Rene Kievits
2025-12-24 07:51:51 +01:00
parent c140bb8292
commit 0b6146755d
5 changed files with 90 additions and 21 deletions

View File

@@ -1,2 +0,0 @@
CAP_ENV=dev
VITE_API_URL=https://zenkanji-api.crylia.de

View File

@@ -15,13 +15,13 @@ export default defineConfig({
},
server: {
allowedHosts: [
'zenkanji.crylia.de',
import.meta.env.VITE_HOST,
],
host: true,
port: 5173,
strictPort: true,
hmr: {
host: 'zenkanji.crylia.de',
host: import.meta.env.VITE_HOST,
protocol: 'wss',
clientPort: 443,
},