Trying to work with angular2 cli and PrimeNG but facing error :
http://localhost:4200/vendor/primeng/primeng 404 (Not Found)
What I have done so far :
npm install primeng
In
angular-cli-build.js
file add path like this :-(...) 'primeng/**/*.+(js|js.map)' (...)
and using in my component like this:-
import {Calendar} from 'primeng/primeng';
but getting error PrimeNG not found.
Should I have to do anything else to make this working ?