I used npm to install the css-loader package
npm install css-loader --save-dev
When I tried to npm run serve, it gives me this error message.
error in ./node_modules/css-loader/lib/css-base.js
Module build failed: Error: ENOENT: no such file or directory, open '/Users/JenniferLiu/Documents/personal_practice/Vue/first-app-vuejs/first-app-vuejs/node_modules/css-loader/lib/css-base.js'
So I looked at node_modules directory, and check for the css-loader directory, and find that lib directory is not there. I tried to uninstall existing css-loader, and reinstalling it again, but it still doesn't have the lib directory.
Here is how the css-loader directory is looking like

How can i fix this issue
I used npm to install the css-loader package
npm install css-loader --save-dev
When I tried to npm run serve, it gives me this error message.
So I looked at node_modules directory, and check for the css-loader directory, and find that lib directory is not there. I tried to uninstall existing css-loader, and reinstalling it again, but it still doesn't have the lib directory.
Here is how the css-loader directory is looking like

How can i fix this issue