From c50ddc2e06b9cd5cb664e8b8b533a5ed9773f749 Mon Sep 17 00:00:00 2001 From: Calum Muir Date: Sun, 21 Dec 2025 13:38:49 +0000 Subject: [PATCH] Configure SPA fallback for Workers assets --- client/public/_redirects | 1 - wrangler.jsonc | 11 ++++++----- 2 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 client/public/_redirects diff --git a/client/public/_redirects b/client/public/_redirects deleted file mode 100644 index 7797f7c..0000000 --- a/client/public/_redirects +++ /dev/null @@ -1 +0,0 @@ -/* /index.html 200 diff --git a/wrangler.jsonc b/wrangler.jsonc index e2772f1..cb4eb22 100644 --- a/wrangler.jsonc +++ b/wrangler.jsonc @@ -1,7 +1,8 @@ { - "name": "rda-2026", - "compatibility_date": "2025-12-21", - "assets": { - "directory": "./dist/public" - } + "name": "rda-2026", + "compatibility_date": "2025-12-21", + "assets": { + "directory": "./dist/public", + "not_found_handling": "single-page-application", + }, }