summaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/src/utils/non-server-chunk-detector.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/cloudflare/src/utils/non-server-chunk-detector.ts')
-rw-r--r--packages/integrations/cloudflare/src/utils/non-server-chunk-detector.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/cloudflare/src/utils/non-server-chunk-detector.ts b/packages/integrations/cloudflare/src/utils/non-server-chunk-detector.ts
index 4b14e7087..16ba2aed9 100644
--- a/packages/integrations/cloudflare/src/utils/non-server-chunk-detector.ts
+++ b/packages/integrations/cloudflare/src/utils/non-server-chunk-detector.ts
@@ -75,7 +75,7 @@ export class NonServerChunkDetector {
// Any chunk not flagged as used on the server is a non-server chunk
this.nonServerChunks = Array.from(chunkToDependencies.keys()).filter(
- (chunk) => !chunkDecisions.get(chunk)
+ (chunk) => !chunkDecisions.get(chunk),
);
}