After downgrading my Angular project from version 7 to 6 and integrating Angular Universal with the help of @ngToolkit, I'm getting the following error message in the browser console:
Can't resolve all parameters for Application Module: (?). at syntaxError (compiler.js:1021)
I downgraded the project by simply overwriting the dependencies like described here. As already described the error only occurs in the browser console, while to compilation of the project is completing successfully.
You’re apparently affected by issue 26128 that was introduced in Angular 6.1.8. As IgorMinar explained (emphasis mine):
In case of Angular
^6.1.8 || ^7.0.0
with Webpack (i.e. not Angular CLI), you have to importreflect-metadata
(before any @angular/core imports—as stated above).