Skip to content

Commit bcc61e2

Browse files
authored
Merge pull request #269 from prgrms-web-devcourse-final-project/fix/268-vite-plugin-compression-delete
[fix] vite-plugin-compression 삭제
2 parents 820f67c + 957d353 commit bcc61e2

File tree

3 files changed

+0
-37
lines changed

3 files changed

+0
-37
lines changed

package-lock.json

Lines changed: 0 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
"typescript": "~5.7.2",
5353
"typescript-eslint": "^8.22.0",
5454
"vite": "^6.1.0",
55-
"vite-plugin-compression": "^0.5.1",
5655
"vite-plugin-pwa": "^0.21.1"
5756
}
5857
}

vite.config.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import react from '@vitejs/plugin-react';
33
import { VitePWA } from 'vite-plugin-pwa';
44
import tailwindcss from '@tailwindcss/vite';
55
import { fileURLToPath, URL } from 'url';
6-
import viteCompression from 'vite-plugin-compression';
76

87
// https://vite.dev/config/
98

@@ -16,10 +15,6 @@ export default defineConfig(({ mode }) => {
1615
global: 'window', // global을 window로 설정
1716
},
1817
plugins: [
19-
viteCompression({
20-
algorithm: 'gzip',
21-
ext: 'gz',
22-
}),
2318
react(),
2419
tailwindcss(),
2520
VitePWA({

0 commit comments

Comments
 (0)