We use Polymer to build a local app. Each Polymer element has a .html and .css (compiled from .scss) file.
Does the use of vulcanize (it concatenates the JS and Polymer elements into one file) provide an advantage? Does the use of some minify tool after vulcanize provide any advantage?
Once again, it is a local (only) app so I mostly care about performance and speed.
From Concatenating Web Components With Vulcanize.
The short answer is “don’t guess it, test it”. There is always a trade-off when it comes to concatenation but tools like WebPageTest can be useful for determining what your true bottlenecks are.