1
0
forked from baron/baron-sso

custom claim 권한체크 확인

This commit is contained in:
2026-06-11 08:29:25 +09:00
parent 839ca9d407
commit 4d77060b5d
79 changed files with 4268 additions and 670 deletions

View File

@@ -117,6 +117,7 @@ function expectNoDuplicateStaticRequests(metrics: LoadMetrics): void {
!path.endsWith("/") &&
!path.endsWith("/main.dart.wasm") &&
!path.endsWith("/main.dart.mjs") &&
!path.endsWith("/assets/AssetManifest.bin.json") &&
!path.endsWith("/skwasm.js") &&
!path.endsWith("/skwasm.wasm")
);
@@ -129,11 +130,14 @@ function resolvePerformanceBudget(projectName: string): {
coldMs: number;
warmMs: number;
} {
if (projectName === "webkit-mobile-webapp") {
return { coldMs: 10_000, warmMs: 4000 };
}
if (projectName.includes("webkit")) {
return { coldMs: 4000, warmMs: 4000 };
}
if (projectName.includes("firefox")) {
return { coldMs: 2600, warmMs: 2800 };
return { coldMs: 3000, warmMs: 2800 };
}
if (projectName.includes("mobile")) {
return { coldMs: 3000, warmMs: 2300 };