forked from baron/baron-sso
custom claim 권한체크 확인
This commit is contained in:
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user