aframevr / aframe-site

:a: Official A-Frame site.
https://aframe.io/
MIT License
99 stars 141 forks source link

Getting an Unhandled Rejection TypeError when trying to run AFrame website locally #529

Closed lainshiHenry closed 2 weeks ago

lainshiHenry commented 10 months ago

Repo: aframe-site

I have forked the aframe-site repo and trying to run the code locally. However, after npm install and then npm start, i'm faced with the error message for the index.ejs file.

Any help is appreciated :)

Screenshot of full error below:

image
vincentfretin commented 2 weeks ago

You need to run npm run installdocs before npm start otherwise you get this error. But npm run installdocs wasn't working on recent node version, see #532 In the meantime, you can edit node_modules/multidep/index.js line 111 to replace timeout with 300000 and run npm run installdocs and then npm start

vincentfretin commented 2 weeks ago

You can close this one @dmarcos

dmarcos commented 2 weeks ago

thanks