MovingBlocks / movingblocks.github.com

Terasology's Homepage hosted as a GitHub Page. On the page you can download Terasology, view related videos, go to the forum, etc.
https://terasology.org/
MIT License
7 stars 17 forks source link

The project won't build on windows 11 #236

Closed Rukki13 closed 4 months ago

Rukki13 commented 4 months ago

The commands yarn run build and yarn run develop don't work because of this command in package.json: "build": "NODE_OPTIONS=\"--no-experimental-fetch\" gatsby build" It's trying to set the environment variable incorrectly, and to fix it, it must be changed to: "build": "set NODE_OPTIONS=--no-experimental-fetch && gatsby build" Nearly the same goes for yarn run develop

Rukki13 commented 4 months ago

I've fixed it and made a pull request => #237

jdrueckert commented 4 months ago

Fixed by #237