kblincoe / VisualGit_SE701_2019_4

1 stars 0 forks source link

Missing file-loader dependency in package.json #111

Closed WanniCode closed 5 years ago

WanniCode commented 5 years ago

To Reproduce:

  1. git fetch upstream and rebase onto the latest version of master
  2. run 'npm run compile'. You should observe a compilation error saying the module file-loader is not found.

The solution is to simply add a single line to package.json that will add the file-loader dependency in: "file-loader": "^3.0.1",

Then run 'npm install' to install it.