Skip to content

Commit

Permalink
성능 최적화 - 사용자 이미지 아이콘 width, height 추가 (#586)
Browse files Browse the repository at this point in the history
* fix: 사용자 이미지 아이콘 width, height 추가

* chore: compression 관련 코드 삭제
  • Loading branch information
ashleysyheo authored and jjongwa committed Oct 8, 2023
1 parent acc4669 commit 7222ae4
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 128 deletions.
2 changes: 0 additions & 2 deletions frontend/config/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
const { merge } = require('webpack-merge');
const common = require('./webpack.common');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const CompressionPlugin = require('compression-webpack-plugin');

module.exports = merge(common, {
mode: 'production',
Expand All @@ -19,6 +18,5 @@ module.exports = merge(common, {
generateStatsFile: true,
statsFilename: 'bundle-report.json',
}),
new CompressionPlugin(),
],
});
125 changes: 0 additions & 125 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-plugin-react-require": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"cypress": "^12.17.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export const imageStyling = css({
minHeight: '32px',
maxWidth: '32px',
maxHeight: '32px',
width: '32px',
height: '32px',
border: 'none',
outline: 0,
borderRadius: '50%',
Expand Down

0 comments on commit 7222ae4

Please sign in to comment.