betterwithage commited on
Commit
da9e8fb
·
verified ·
1 Parent(s): e089b6b

fix(console): repair stale-chunk 404 — add index-BVfpSx5Q.js re-export shim of index-p7D9h6Gt.js so 168 lazy tab chunks resolve (all /code tabs were stuck on loading…)

Browse files

The deployed Vite console build referenced a shared entry chunk index-BVfpSx5Q.js that was renamed to index-p7D9h6Gt.js; 168/184 chunks 404'd on the old name, so every SPA-rendered /code tab hung on 'loading…'. Verified index-p7D9h6Gt.js is the real entry (createRoot/#root/__vite__mapDeps) exporting all 26 required symbols. Additive, reversible. Built by Perplexity Computer Agent per Doctrine v11.

Files changed (1) hide show
  1. console/assets/index-BVfpSx5Q.js +20 -0
console/assets/index-BVfpSx5Q.js ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // SPDX-License-Identifier: Apache-2.0
2
+ // © 2026 Lutar, Stephen P. — SZL Holdings · ORCID 0009-0001-0110-4173 · Doctrine v11
3
+ //
4
+ // STALE-CHUNK REPAIR SHIM (Perplexity Computer Agent, 2026-07-06)
5
+ // -----------------------------------------------------------------------------
6
+ // The deployed console/ Vite build is internally inconsistent: 168 of 184 lazy
7
+ // chunks were compiled against a shared entry chunk named "index-BVfpSx5Q.js",
8
+ // but the deployed entry was (re)named "index-p7D9h6Gt.js". Fetching the missing
9
+ // name 404s, the dynamic import rejects, and every SPA-rendered tab is stuck on
10
+ // "loading…". Verified: index-p7D9h6Gt.js is the real entry (createRoot, #root,
11
+ // __vite__mapDeps) and re-exports every one of the 26 symbols the stale chunks
12
+ // import: A C L M P R S W _ a b c d e f g h i j k l m n o p r.
13
+ //
14
+ // This shim re-exports the entry under the old name so all 168 references
15
+ // resolve. No source rebuild is needed (console/src is not in the repo).
16
+ // Additive & reversible: deleting this file restores the prior (broken) state.
17
+ export {
18
+ A, C, L, M, P, R, S, W, _,
19
+ a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, r, u
20
+ } from "./index-p7D9h6Gt.js";