Fix command and add comment formatting

Changed the command from `npm build` to `npm run build`, and changed the codeblock language formatting thing to use `sh`
This commit is contained in:
Arche 2021-08-02 11:51:08 +00:00 committed by GitHub
parent b2c5304efe
commit f5dfc3604a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,9 +25,9 @@ by simply copying these files to the webroot:
Execute the following commands to compile the app from its source code: Execute the following commands to compile the app from its source code:
``` ```sh
npm install #installs all dependencies npm install # Installs all dependencies
npm build #compiles the app into the dist/ directory npm run build # Compiles the app into the dist/ directory
``` ```
You can then copy the files to a webserver's webroot of your choosing as noted above. You can then copy the files to a webserver's webroot of your choosing as noted above.