fix(ci): wrong host for standalone

This commit is contained in:
Elian Doran
2026-04-19 12:03:59 +03:00
parent c995c15eae
commit 0f68993605
2 changed files with 2 additions and 2 deletions

View File

@@ -124,7 +124,7 @@ jobs:
- name: Start standalone preview server
run: |
cd apps/client-standalone
pnpm vite preview --port $TRILIUM_PORT &
pnpm vite preview --port $TRILIUM_PORT --host 127.0.0.1 &
sleep 5
- name: Standalone end-to-end tests

View File

@@ -11,7 +11,7 @@
"start-prod": "pnpm build && pnpm vite preview --port 8888",
"coverage": "vitest --coverage",
"e2e": "playwright test",
"start-prod-no-dir": "pnpm build && pnpm vite preview --port ${TRILIUM_PORT:-8082}"
"start-prod-no-dir": "pnpm build && pnpm vite preview --port ${TRILIUM_PORT:-8082} --host 127.0.0.1"
},
"dependencies": {
"@excalidraw/excalidraw": "0.18.0",