Skip to content

Commit 26d4f39

Browse files
authored
Merge pull request #265 from prgrms-web-devcourse-final-project/refacto/263-text-compression
[refactor] 텍스트 압축 용량 제한 해제
2 parents 797f698 + 26786b1 commit 26d4f39

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

vite.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ export default defineConfig(({ mode }) => {
1818
plugins: [
1919
compression({
2020
algorithm: 'brotliCompress', // Brotli 적용
21-
threshold: 1024, // 1KB 이상만 압축
2221
ext: '.br', // Brotli 확장자 사용
2322
}),
2423
compression({
2524
algorithm: 'gzip', // Gzip도 적용 (백업용)
26-
threshold: 1024, // 1KB 이상만 압축
2725
ext: '.gz',
2826
}),
2927
react(),

0 commit comments

Comments
 (0)