Vue Bundle 용량 최소화(1) - 분석


Vue Bundle 용량 최소화(1) - 분석

먼전 각 Bundle의 용량을 분석하여 어느곳에서 많은 용량을 차지하고 있는지 확인해야 한다. https://www.npmjs.com/package/webpack-bundle-analyzer webpack-bundle-analyzer Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap www.npmjs.com 1. webpack-bundle-analyzer 설치 npm i --save-dev webpack-bundle-analyzer 2. webpack설정 const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin module.exports = { configureWebpack: { plugins: [new BundleAnalyzerPlugin()] } } ...


#analyzer #Bundle #Vue #용량최소화

원문링크 : Vue Bundle 용량 최소화(1) - 분석