From 69e2e3e15fc03081688ce54b0595f2e21db1688a Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Tue, 30 Jun 2026 01:22:48 +0800 Subject: [PATCH] fix: force Cloudflare Worker rebuild to pick up page_asset.js changes Worker imports PAGE_HTML from page_asset.js at line 1. Without Worker rebuild, the live site still served old HTML. Add version comment to worker.js to force redeployment. Co-Authored-By: Claude --- web/strategy-switch-console/worker.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/strategy-switch-console/worker.js b/web/strategy-switch-console/worker.js index c94079f..0caff98 100644 --- a/web/strategy-switch-console/worker.js +++ b/web/strategy-switch-console/worker.js @@ -1,3 +1,4 @@ +// deploy: 2026-06-30T01:30Z — force Worker rebuild for page_asset.js sync import { PAGE_HTML } from "./page_asset.js"; import { DEFAULT_STRATEGY_PROFILES } from "./strategy_profiles_asset.js";