Reputation: 55
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
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