From 35032fa98834eda1695d15258b25da22f46abbee Mon Sep 17 00:00:00 2001 From: LoveJesus Date: Tue, 13 Jan 2026 04:47:44 +0000 Subject: [PATCH] Remove routes.exclude for Workers for Platforms compatibility --- svelte.config.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/svelte.config.js b/svelte.config.js index d89bafd..a986923 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -8,14 +8,13 @@ const config = { preprocess: vitePreprocess(), kit: { adapter: adapter({ - routes: { - include: ['/*'], - exclude: [''] - } + // Remove routes.exclude so the worker handles all routes + // This is required for Workers for Platforms dispatch namespaces + // where static assets are not automatically served }) } }; export default config; -// JESUS CHRIST IS LORD +// JESUS CHRIST IS LORD \ No newline at end of file