In Angular (ver 10.2) I'm trying to use ngx-cookie-service per instructions:
- Ran "npm install ngx-cookie-service --save"
- In app.module.ts, added provider as follows: "providers: [CookieService],"
- In app.module.ts, imported as follows: "import { CookieService } from 'ngx-cookie-service/lib/cookie.service';"
I can use it in the code & no errors shown in any file, so it seems it finds it... but when trying to build "ng build --prod", I get this error:
ERROR in ./src/app/app.module.ts Module not found: Error: Can't resolve 'ngx-cookie-service/lib/cookie.service'
Any ideas?