Feat : Kiro MITM

This commit is contained in:
decolua
2026-03-17 16:12:25 +07:00
parent 065761268c
commit 03ff35100d
13 changed files with 266 additions and 169 deletions

View File

@@ -14,7 +14,9 @@ export async function ensureAppInitialized() {
return initialized;
}
// Auto-initialize when module loads
ensureAppInitialized().catch(console.log);
// Auto-initialize at runtime only, not during next build
if (process.env.NEXT_PHASE !== "phase-production-build") {
ensureAppInitialized().catch(console.log);
}
export default ensureAppInitialized;