Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot find module 'ngx-cookie-service'

Iam using Angular 12, I installed cookie by using: npm install --save ngx-cookie-service
in app.module.ts when I import 'CookieService' import { CookieService } from 'ngx-cookie-service'; I got this error message: Cannot find module 'ngx-cookie-service' or its corresponding type declarations.ts(2307) enter image description here

like image 552
Ninoos Al Katoni Avatar asked Sep 16 '25 21:09

Ninoos Al Katoni


1 Answers

It looks like this is a reported issue with ngx-cookie-service version 12.0.1. Downgrading to 12.0.0 seems to fix the problem for now.

npm install [email protected]

-- UPDATE -- The issue is flagged as resolved with the release of version 12.0.2. Should be safe to install the latest now.

like image 191
dgates82 Avatar answered Sep 19 '25 20:09

dgates82