diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d5cdbb1..98e532d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,7 +40,7 @@ jobs: run: echo "basePath=${{ github.event.repository.name }}" >> $GITHUB_ENV - name: Build - run: npm run build:prod -- --base=/${{ env.basePath }} + run: npm run build:prod - name: Deploy uses: peaceiris/actions-gh-pages@v4 diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 7b33e25..9abfb84 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -19,7 +19,7 @@ "detail": "tsc -b && vite build", "type": "shell", "command": "npm", - "args": ["run", "build", "--", "--base", "/llama.ui"], + "args": ["run", "build"], "group": "build", "problemMatcher": ["$eslint-stylish"] }, diff --git a/README.md b/README.md index c753d32..1c27b35 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ This repository is a fork of [llama.cpp](https://github.com/ggml-org/llama.cpp) ### 💻 Standalone Mode (Zero Installation) -1. ✨ Open our [hosted UI instance](https://olegshulyakov.github.io/llama.ui/) +1. ✨ Open our [hosted UI instance](https://llama-ui.js.org/) 2. ⚙️ Click the gear icon → General settings 3. 🌐 Set "Base URL" to your local llama.cpp server (e.g. `http://localhost:8080`) 4. 🎉 Start chatting with your AI! diff --git a/index.html b/index.html index 87797ca..7be0ff1 100644 --- a/index.html +++ b/index.html @@ -28,17 +28,14 @@ property="og:description" content="A minimal Interface for AI Companion that runs entirely in your browser." /> - + @@ -50,7 +47,7 @@ /> diff --git a/package.json b/package.json index 273432e..7669cec 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,10 @@ { - "name": "llama.ui", "private": true, + "name": "llama.ui", + "description": "A minimal Interface for AI Companion that runs entirely in your browser.", "version": "2.18.0", + "homepage": "https://llama-ui.js.org/", + "license": "MIT", "type": "module", "scripts": { "prestart": "npm run format", @@ -64,5 +67,9 @@ "semi": true, "singleQuote": true, "bracketSameLine": false + }, + "repository": { + "type": "git", + "url": "https://github.com/olegshulyakov/llama.ui.git" } }