Skip to content

Commit

Permalink
chore: 사용하지 않는 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
pakxe committed Sep 26, 2024
1 parent 7e2ef26 commit 79f0ea5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions client/webpack.common.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import HtmlWebpackPlugin from 'html-webpack-plugin';
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import {ModifySourcePlugin, ConcatOperation} from 'modify-source-webpack-plugin';
import {fileURLToPath} from 'url';
import {BundleAnalyzerPlugin} from 'webpack-bundle-analyzer';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
Expand Down Expand Up @@ -48,7 +47,7 @@ export default {
],
},
{
test: /\.png$/i,
test: /\.(png|webp)$/,
loader: 'file-loader',
},
],
Expand All @@ -68,9 +67,5 @@ export default {
},
],
}),
// new BundleAnalyzerPlugin({
// analyzerMode: 'static',
// generateStatsFile: true,
// }),
],
};

0 comments on commit 79f0ea5

Please sign in to comment.