Compare commits

..

4 Commits

Author SHA1 Message Date
TeamCity
65591ad392 ci: bump version to v0.24.0 2026-01-20 18:31:14 +00:00
cd950e9521 feat: Update docker-entrypoint.sh and vite.config.ts for improved runtime handling and API navigation 2026-01-20 19:28:50 +01:00
TeamCity
c2dfa0e701 ci: bump version to v0.23.1 2026-01-20 11:31:51 +00:00
d3709ed852 feat/auth (#29)
Reviewed-on: #29
Co-authored-by: Janis <janis.e.20@gmx.de>
Co-committed-by: Janis <janis.e.20@gmx.de>
2026-01-20 12:28:20 +01:00
4 changed files with 10 additions and 2 deletions

View File

@@ -165,3 +165,9 @@
### Features ### Features
* **ui:** Tie selection ([#26](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/issues/26)) ([6c914b1](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/6c914b1421030897d47449087dd1694068e84436)) * **ui:** Tie selection ([#26](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/issues/26)) ([6c914b1](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/6c914b1421030897d47449087dd1694068e84436))
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.23.0...0.0.0) (2026-01-20)
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.23.1...0.0.0) (2026-01-20)
### Features
* Update docker-entrypoint.sh and vite.config.ts for improved runtime handling and API navigation ([cd950e9](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/cd950e952117cebe0ec46a18fc5b2cf90b247766))

View File

@@ -15,6 +15,5 @@ else
echo "No runtime template found at $TEMPLATE_PATH, skipping" echo "No runtime template found at $TEMPLATE_PATH, skipping"
fi fi
# Start nginx in foreground
exec nginx -g 'daemon off;' exec nginx -g 'daemon off;'

View File

@@ -1,3 +1,3 @@
MAJOR=0 MAJOR=0
MINOR=23 MINOR=24
PATCH=0 PATCH=0

View File

@@ -22,6 +22,9 @@ export default defineConfig({
globPatterns: [ globPatterns: [
'**/*.{js,css,html,ico,png,svg,webmanifest}', '**/*.{js,css,html,ico,png,svg,webmanifest}',
], ],
navigateFallbackDenylist: [
/^\/api/,
],
}, },
manifest: { manifest: {