Compare commits

...

2 commits
0.4.4 ... main

Author SHA1 Message Date
James Mills
bd3a7bdf89
Fix serving non-existent pages by disabling SPA mode 2025-01-01 15:53:18 +10:00
James Mills
6690094cf4
Fix Dockerfile 2024-12-26 12:37:52 +10:00
2 changed files with 1 additions and 1 deletions

View file

@ -22,6 +22,7 @@ RUN go mod download
# Copy sources
COPY *.go ./
COPY default ./default
# Version/Commit (there there is no .git in Docker build context)
# NOTE: This is fairly low down in the Dockerfile instructions so

View file

@ -797,7 +797,6 @@ func serve(ctx context.Context, bind, root string) error {
static.WithRoot(root),
static.WithCGI(true),
static.WithDir(true),
static.WithSPA(true),
)
if err != nil {
return err