Files
OmniRoute/src/mitm/manager.runtime.ts
diegosouzapw dd790c38a2 refactor(gamification): raise federation token hashing cost
Increase PBKDF2 iterations for federation auth and server API key
hashes to better resist brute-force attacks and keep hashing behavior
aligned across leaderboard, score, and server connection flows.

Regenerate auto-generated docs entries for the Kiro setup,
gamification, and dashboard shakedown guides.
2026-05-20 02:21:37 -03:00

6 lines
294 B
TypeScript

// Runtime bypass for Turbopack resolveAlias.
// Turbopack maps @/mitm/manager → manager.stub.ts so the build doesn't choke
// on native module imports. Dynamic import() of @/mitm/manager.runtime does NOT
// match that alias and loads the real manager at runtime.
export * from "./manager";