Skip to content

Building

Hayden Schiff edited this page Nov 25, 2019 · 3 revisions

N.B. This page is only relevant if you intend to put this game on a web server for the public; you do not need to do this if you are only running the game locally on your own computer.

If you have a finished version of the game that you would like to deploy to web, you will first need to make a production build of the game with the command npm run build. This will generate a full copy of the game in the dist/ directory of the game's main folder. You can then upload the contents of dist/ to any web server and it should just work. This game consists entirely of static files, so you do not need to have any special software on your web server.

Clone this wiki locally