umami: Cannot access websites page in 2.7.0

Describe the Bug

Hello,

I just installed v2.7.0 via Docker. I cannot access the websites page, I got a blank white page.

There is an error in the dev console :

 Error: Failed to lookup route: /settings
    at /_next/static/chunks/main-56afab9f90f97dc9.js:1:26985

I’m using latest verion of Brave browser, but same issue with other browsers like Firefox

Database

PostgreSQL

Relevant log output

Error: Failed to lookup route: /settings
    at /_next/static/chunks/main-56afab9f90f97dc9.js:1:26985

Which browser are you using? (if relevant)

Brave

How are you deploying your application? (if relevant)

Docker

About this issue

  • Original URL
  • State: closed
  • Created 9 months ago
  • Reactions: 3
  • Comments: 21 (5 by maintainers)

Most upvoted comments

Looks like the issue is solved for me in 2.9.0

2.8.0 has the same issue, with a more visible error message:

image

Follow. I’m using the docker-compose method and after an upgrade (via docker-compose up -d) I can’t get to any of my sites. It seems the error is the same: the browser is trying to load .js from a URL that contains [id] when I suppose that’s an un-expanded token.

Downgraded to v2.5.0 by applying:

diff --git a/docker-compose.yml b/docker-compose.yml
index e7b5f818..fbe784f1 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -2,7 +2,7 @@
 version: '3'
 services:
   umami:
-    image: ghcr.io/umami-software/umami:postgresql-latest
+    image: ghcr.io/umami-software/umami:postgresql-v2.5.0
     ports:
       - "40003:3000"
     environment:

and then doing docker-compose up -d gets it working again.