teraxxx
teraxxx

Reputation: 55

Angular - Error: Can't resolve 'classlist.js'

 import 'classlist.js';

I build the project using angular cli it throws an error in console.

Executed this command in project "npm install --save classlist.js"

Module not found: Error: Can't resolve 'classlist.js' in src
@ ./src/polyfills.ts 36:0-22
@ multi ./src/polyfills.ts

Thanks in advance.

Upvotes: 1

Views: 1625

Answers (1)

Iñigo
Iñigo

Reputation: 2016

You can easily solve that with the following commands:

npm uninstall classlist.js --save
npm cache verify
npm install classlist.js --save-exact

Upvotes: 3

Related Questions