From f5dfc3604ac46aadb7c2620c9ab0d1df537826b3 Mon Sep 17 00:00:00 2001 From: Arche <66189242+arche-dev@users.noreply.github.com> Date: Mon, 2 Aug 2021 11:51:08 +0000 Subject: [PATCH] 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` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5350aa..d4a7aea 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,9 @@ by simply copying these files to the webroot: Execute the following commands to compile the app from its source code: -``` -npm install #installs all dependencies -npm build #compiles the app into the dist/ directory +```sh +npm install # Installs all dependencies +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.