From db4bc1ecbfcdff17eb71f098cc428fde3d637c0e Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Thu, 4 Jan 2024 20:01:16 -0800 Subject: [PATCH] doc: node as default mode of installation --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3c892e964..d18b0653c 100644 --- a/README.md +++ b/README.md @@ -217,9 +217,13 @@ cd ollama-webui/ # Copying required .env file cp -RPp example.env .env -# Building Frontend -bun install -bun run build +# Building Frontend Using Node +npm i +npm run build + +# or Building Frontend Using Bun +# bun install +# bun run build # Serving Frontend with the Backend cd ./backend