Vincent Carrier
Vincent Carrier
Same, very annoying. Same thing for two-characters search
Seconded. Meanwhile, out of curiosity, what is the fix you guys are using? Something like `order.forEach { order -> order.customer.target = order }` ?
I think I got a bit confused in regard to code-splitting. From what I now understand, [Code-splitting](https://reactjs.org/docs/code-splitting.html) is when you use async imports, e.g. ```js const Home = lazy(() =>...
Thought about this some more: You can mix both patterns together e.g. ```js // my-utils.js export { range, take } from 'lodash-es' ``` and then in your consumer code ```js...
@bep Completely agree. My website only has two dependencies at the moment (lit-html and rough-notation), and so far I've been shipping them unbundled without any performance problems. The problem with...