-
-
Notifications
You must be signed in to change notification settings - Fork 859
Closed
Description
I have installed Node.js 8.0.0 under Windows 10 and I am getting the following errors when I am using the razzle start
command:
\node_modules\razzle\config\create-config.js:60
process.env.NODE_PATH.split(path.delimiter).filter(Boolean)
^
TypeError: Cannot read property 'split' of undefined
at module.exports (\node_modules\razzle\config\create-config.js:60:30)
at Object.<anonymous> (\node_modules\razzle\scripts\start.js:35:20)
at Module._compile (module.js:569:30)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:503:32)
at tryModuleLoad (module.js:466:12)
at Function.Module._load (module.js:458:3)
at Function.Module.runMain (module.js:605:10)
at startup (bootstrap_node.js:158:16)
at bootstrap_node.js:575:3
\node_modules\execa\index.js:277
throw (result.error || new Error(result.stderr === '' ? result.stdout : result.stderr));
^
Error: null
at Function.module.exports.sync (\node_modules\execa\index.js:277:26)
at Object.<anonymous> (\node_modules\razzle\bin\razzle.js:12:9)
at Module._compile (module.js:569:30)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:503:32)
at tryModuleLoad (module.js:466:12)
at Function.Module._load (module.js:458:3)
at Function.Module.runMain (module.js:605:10)
at startup (bootstrap_node.js:158:16)
at bootstrap_node.js:575:3
error Command failed with exit code 1.
I am getting a similar error for razzle build
as well.
With Node.js 7.10.0 it worked and it still works if I install it back.
corydeppen