From d623d136a85bbcdb32eebef31ad02bc8431c917f Mon Sep 17 00:00:00 2001 From: Andrew Vivash Date: Thu, 1 Feb 2024 08:51:44 -0800 Subject: [PATCH] Fix: update readme to use npm instead of yarn --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e3ad526..a5bc497 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The [Publish action](https://github.com/fission-suite/landing-page/actions/workf Install dependencies ```bash -yarn +npm i ``` # Create .env @@ -30,7 +30,7 @@ SITE_URL=http://localhost:8080 Start the development server ```bash -yarn start +npm run start ``` This will grab all posts and images and the site will be running at `https://localhost:8080` @@ -42,5 +42,5 @@ You can disable the default Ghost Handlebars Theme front-end by enabling the `Ma ```bash # Build the site locally -yarn build +npm run build ```