From 88c6c70f9e7139a3d29e1c22ad8562724f1d1d09 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 20 Mar 2026 11:56:35 -0700 Subject: [PATCH] fix(rmaps): add cache-busting version to JS/CSS script tags Co-Authored-By: Claude Opus 4.6 --- modules/rmaps/mod.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/rmaps/mod.ts b/modules/rmaps/mod.ts index dbb4790..0f4cd0d 100644 --- a/modules/rmaps/mod.ts +++ b/modules/rmaps/mod.ts @@ -244,8 +244,8 @@ routes.get("/", (c) => { spaceSlug: space, modules: getModuleInfoList(), body: ``, - scripts: ``, - styles: ``, + scripts: ``, + styles: ``, })); }); @@ -259,9 +259,9 @@ routes.get("/:room", (c) => { moduleId: "rmaps", spaceSlug: space, modules: getModuleInfoList(), - styles: ``, + styles: ``, body: ``, - scripts: ``, + scripts: ``, })); });