chore: Move the changelog to the repository root

The release notes rendered in the about modal only existed as an asset
inside the client, where nothing outside a build would look for them. The
file moves to CHANGELOG.md at the root and the about modal reads it from
there, so the client build and the Docker image copy in the same file the
repository keeps.

An unreleased section collects the orphaned reference fixes and the
pagination fixes.
This commit is contained in:
Daniel Hiller
2026-08-26 10:15:56 +02:00
parent d7da44efe4
commit 6def0330c2
5 changed files with 21 additions and 3 deletions
+4
View File
@@ -56,6 +56,10 @@ export default defineConfig({
server: {
port: 3000,
open: true,
// The changelog rendered in the about modal lives at the repository root
fs: {
allow: ['..'],
},
proxy: {
'/api': PROXY_TARGET,
'/socket.io': { target: PROXY_TARGET, ws: true },