Skip to content

Commit 0a1385e

Browse files
feat: increase maximum file size to cache in webComponents's vite configuration to 10 MB (#1370)
1 parent 86fc73c commit 0a1385e

File tree

1 file changed

+1
-1
lines changed
  • packages/cli/templates/webcomponents/igc-ts/projects/_base/files

1 file changed

+1
-1
lines changed

packages/cli/templates/webcomponents/igc-ts/projects/_base/files/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default defineConfig({
4242
handler: 'CacheFirst',
4343
},
4444
],
45-
maximumFileSizeToCacheInBytes: 5 * 1024 * 1024
45+
maximumFileSizeToCacheInBytes: 10 * 1024 * 1024 // 10 MB
4646
},
4747
}),
4848
],

0 commit comments

Comments
 (0)