Skip to content

Commit

Permalink
fix: keep size limit at 1500kb (#884)
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshshanmugam authored Jan 8, 2024
1 parent 69304de commit 37fa84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/push/bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { commonOptions } from '../core/transform';
import { SyntheticsBundlePlugin } from './plugin';

// 1500KB Max Gzipped limit for bundled code to be pushed as Kibana project monitors.
const SIZE_LIMIT_KB = 200;
const SIZE_LIMIT_KB = 1500;

function relativeToCwd(entry: string) {
return path.relative(process.cwd(), entry);
Expand Down

0 comments on commit 37fa84f

Please sign in to comment.