Open samcromer opened 6 years ago
Here is my log file:
VM34:6 Error executing AG js: ReferenceError: e is not defined
(anonymous) @ VM34:6
dev-server.js:49 [HMR] Waiting for update signal from WDS...
bootstrap 24e60464162d6c13b695:708 Uncaught Error: Module build failed: Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (59)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v3.13.0
at module.exports (C:\Users\Sam.Cromer.2017011SC\Documents\Web\angular-fundamentals-seed-master\angular-fundamentals-seed-master\node_modules\node-sass\lib\binding.js:13:13)
at Object.
Did you see this error?
Uncaught Error: Module build failed: Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (59) For more information on which environments are supported please see: https://github.com/sass/node-sass/releases/tag/v3.13.0
By the way, I just ran into a similar issue, I figured out it was my version of NODE that I was running 10.0.0. After downgrading to 8.11.1 everything worked out fine. I am not sure if this is the same issue you have but worth a shot.
node -v
Here is my machine settings, High Sierra v10.13.4 , Darwin x64
.
$ node -v
v10.0.0
$ npm -v
5.6.0
$ yarn -v
1.6.0
So what I did was simple, just remove the locked dev-dependencies of node-sass and sass-loader from package.json
then simply run:
yarn add node-sass sass-loader --dev
fixed everything for me.
here check my fork of the project, this commit shows the diff in my package.json
I hope this fix it for you as well.
I have everything installed and built, zero errors but when I do yarn start and browse to localhost:4000 all i see is a blank page.