Working with the webapp framework is great, except for one thing:
I want to create custom components and I want to use them in different projects. For windows applications I can simply create a library workspace and include it everywhere I want to use those components. I want to be able to do the same for my WebApps. It somewhat beats the purpose of a library workspace when you have to copy the CSS, and JS files and then modify the index.html manually to include those.

Can you figure out a way to make "WebComponent libraries" work? I think of something like asset management or something like that. Probably copy the appHtml of the library into a subfolder (or zip or something) of the current project and add some "magic" to include/load whathever is needed in the index.html (with the df-include.js for example).

When the library changes, the subfolder gets updated (based on the version of the library?).

This would really make working with custom web components easier and it would allow us to easily share custom components with each other.