Merlin

Results 8 comments of Merlin

@aleks-f I was merely wondering what your opinion on this was. I would be more than happy to contribute, however C++ is unfortunately not my area expertise :/ But as...

Okay I just found a workaround: 1. run `ng add @angular/material` as usual 2. select theme 3. select typography 4. IMPORTANT: Choose to disable Angular animations module ("Do not include")...

@uvero glad to help! Regarding your question: Try running: `npm i -D @schematics/angular` or `yarn add -D @schematics/angular` It resolved a similar problem for me :)

@llPekoll , just had the same issue. Resolved by moving the `VANTA` script from `head` to `body`. Before: ```html Document VANTA.WAVES('#my-background'); ``` After: ```html Document VANTA.WAVES('#my-background'); ``` Not the most...