I have a Lightning Web Component (LWC) which has a .html, .css, and .js file.
I wish to measure the bundle size of this one component.
To do so, I wish to bundle my component using rollup. And then measure the bundled file size using some 3rd party library.
But how do I use rollup in this context? I see there are many plugins required... I could not seem to find examples online where the developer is bundling all three: .html, .css, and .js. What would my rollup.config.js file consume for its plugins, and what would this file even look like?