Tobias Andersen
Tobias Andersen
It's probably a specificity issue (i.e. your styles are getting overwritten by a rule with higher specificity). It's not the prettiest solution, but try giving your rule higher specificity, e.g....
I'm a bit curious about why you'd want this?
I've been thinking about exposing the entire webpack config and allow users to overwrite it (similar to what Razzle is doing: https://razzlejs.org/docs/customization#extending-webpack), but I'm worried we'll regret that in the...
Thanks! Supporting TypeScript would be really nice. But we don't use it ourselves so I don't see us working on adding support for it anytime soon. I'd love a PR...
This is now supported.
You're right, seems like only the keyboard shortcut works.
This should be fixed in the latest version ([[email protected]](https://www.npmjs.com/package/@nxtedition/caspar-graphics/v/1.0.0-beta.27)).
> 2. use a path completion plugin to cmp. There are many, I am using mine: [tzachar/cmp-fuzzy-path](https://github.com/tzachar/cmp-fuzzy-path) But isn't this [tzachar/cmp-fuzzy-path](https://github.com/tzachar/cmp-fuzzy-path)? 🙂 Are you saying it should be possible using...
You're sending `name` as an object, but you probably want it to be a string? Or use `name.text` in your template?
The problem is how the data is sent. The template is expecting `name` to be a string, but you're sending an object that contains a property `text` (which is a...