diff --git a/.gitea/scripts/registry_prune.py b/.gitea/scripts/registry_prune.py new file mode 100644 index 0000000..12c40ec --- /dev/null +++ b/.gitea/scripts/registry_prune.py @@ -0,0 +1,277 @@ +#!/usr/bin/env python3 +""" +Registry Image Tag Pruner - Keeps only the latest 1 SHA-tag per repository. + +Usage: + python3 registry_prune.py \ + --registry registry.nxtgauge.com \ + --repo nxtgauge-rust-gateway \ + --username "$REGISTRY_USERNAME" \ + --password "$REGISTRY_PASSWORD" + +Environment variables can also be used: + REGISTRY_HOST, REGISTRY_REPO, REGISTRY_USERNAME, REGISTRY_PASSWORD + +SHA-like tags are identified by pattern: ^[a-f0-9]{40}$ +Non-SHA tags (e.g., high-performance-latest, main-latest, latest) are NEVER deleted. + +Exit code: 0 on success (or if prune fails gracefully), non-zero only on critical error. +""" + +import argparse +import base64 +import json +import os +import sys +import time +from urllib.request import Request, urlopen +from urllib.error import URLError, HTTPError + + +def parse_args(): + parser = argparse.ArgumentParser( + description="Prune Docker registry tags, keeping only the latest SHA tag." + ) + parser.add_argument("--registry", default=os.environ.get("REGISTRY_HOST")) + parser.add_argument("--repo", default=os.environ.get("REGISTRY_REPO")) + parser.add_argument("--username", default=os.environ.get("REGISTRY_USERNAME")) + parser.add_argument("--password", default=os.environ.get("REGISTRY_PASSWORD")) + parser.add_argument("--keep", type=int, default=1, help="Number of SHA tags to keep (default: 1)") + return parser.parse_args() + + +def api_request(url: str, method: str, username: str, password: str, data=None, retries: int = 3) -> dict | None: + """Make an authenticated API request with retry logic.""" + auth = base64.b64encode(f"{username}:{password}".encode()).decode() + headers = { + "Authorization": f"Basic {auth}", + "Content-Type": "application/json", + } + + for attempt in range(1, retries + 1): + try: + req = Request(url, method=method, headers=headers, data=data) + with urlopen(req, timeout=30) as response: + content = response.read() + if content: + return json.loads(content) + return {} + except HTTPError as e: + if e.code == 401: + print(f" [ERROR] Authentication failed (401)") + return None + if e.code == 404: + print(f" [WARN] Resource not found: {url}") + return None + print(f" [RETRY {attempt}/{retries}] HTTP {e.code} for {url}") + except URLError as e: + print(f" [RETRY {attempt}/{retries}] URL error: {e.reason}") + except Exception as e: + print(f" [RETRY {attempt}/{retries}] Error: {e}") + + if attempt < retries: + time.sleep(attempt * 2) + + print(f" [ERROR] Failed after {retries} attempts for {url}") + return None + + +def get_tag_digest(registry: str, repo: str, tag: str, username: str, password: str) -> tuple[str, str] | None: + """Get the digest (sha256:...) and created time for a tag.""" + url = f"https://{registry}/v2/{repo}/manifests/{tag}" + auth = base64.b64encode(f"{username}:{password}".encode()).decode() + + for attempt in range(1, 4): + try: + req = Request(url, method="GET", headers={ + "Authorization": f"Basic {auth}", + "Accept": "application/vnd.docker.distribution.manifest.v2+json", + }) + with urlopen(req, timeout=30) as response: + digest = response.headers.get("Docker-Content-Digest", "") + created = response.headers.get("Date", "") + return digest, created + except Exception as e: + print(f" [RETRY {attempt}/3] Getting digest for {tag}: {e}") + time.sleep(attempt) + + return None + + +def delete_tag(registry: str, repo: str, digest: str, username: str, password: str) -> bool: + """Delete a tag by its digest.""" + url = f"https://{registry}/v2/{repo}/manifests/{digest}" + auth = base64.b64encode(f"{username}:{password}".encode()).decode() + + for attempt in range(1, 4): + try: + req = Request(url, method="DELETE", headers={ + "Authorization": f"Basic {auth}", + }) + with urlopen(req, timeout=30) as response: + if response.status in (200, 202, 404): + return True + except HTTPError as e: + if e.code == 404: + return True # Already deleted + print(f" [RETRY {attempt}/3] Deleting {digest[:20]}...: {e}") + except Exception as e: + print(f" [RETRY {attempt}/3] Deleting {digest[:20]}...: {e}") + + time.sleep(attempt) + + return False + + +def is_sha_tag(tag: str) -> bool: + """Check if tag looks like a SHA (40 hex chars).""" + import re + return bool(re.match(r"^[a-f0-9]{40}$", tag)) + + +def prune_tags(registry: str, repo: str, username: str, password: str, keep: int = 1) -> bool: + """ + Main prune logic: + - List all tags for the repo + - Filter SHA-like tags + - Sort by created date (newest first) + - Keep newest `keep` tags + - Delete older SHA tags by digest + - Never delete non-SHA tags + """ + print(f"\n=== Pruning {registry}/{repo} ===") + print(f"Strategy: Keep {keep} newest SHA tag(s), delete older SHA tags") + print(f"Non-SHA tags (e.g., high-performance-latest, main-latest, latest) are preserved\n") + + # Get catalog (list of repos) + catalog_url = f"https://{registry}/v2/_catalog" + catalog = api_request(catalog_url, "GET", username, password) + if catalog is None: + print("[ERROR] Failed to get repository catalog") + return False + + if repo not in catalog.get("repositories", []): + print(f"[INFO] Repository {repo} not found in catalog") + return True + + # Get tags for repo + tags_url = f"https://{registry}/v2/{repo}/tags/list" + tags_data = api_request(tags_url, "GET", username, password) + if tags_data is None: + print(f"[ERROR] Failed to get tags for {repo}") + return False + + all_tags = tags_data.get("tags", []) + if not all_tags: + print("[INFO] No tags found") + return True + + # Separate SHA tags from non-SHA tags + sha_tags = [t for t in all_tags if is_sha_tag(t)] + non_sha_tags = [t for t in all_tags if not is_sha_tag(t)] + + print(f"Total tags: {len(all_tags)}") + print(f" SHA tags (candidates for pruning): {len(sha_tags)}") + print(f" Non-SHA tags (protected): {len(non_sha_tags)}") + if non_sha_tags: + print(f" Protected tags: {', '.join(sorted(non_sha_tags))}") + + if not sha_tags: + print("\n[INFO] No SHA tags to prune") + return True + + # Get digest and created time for each SHA tag + tag_info = [] + for tag in sha_tags: + result = get_tag_digest(registry, repo, tag, username, password) + if result: + digest, created = result + tag_info.append({ + "tag": tag, + "digest": digest, + "created": created, + "timestamp": parse_http_date(created) if created else 0, + }) + time.sleep(0.1) # Be nice to the registry + + if not tag_info: + print("\n[ERROR] Could not get info for any SHA tags") + return False + + # Sort by timestamp (newest first) + tag_info.sort(key=lambda x: x["timestamp"], reverse=True) + + print(f"\nSHA tags sorted by age (newest first):") + for i, info in enumerate(tag_info): + marker = " [KEEP]" if i < keep else " [DELETE]" + print(f" {i+1}. {info['tag']} ({info['created'] or 'unknown date'}){marker}") + + # Delete older SHA tags + deleted_count = 0 + kept_count = 0 + + for i, info in enumerate(tag_info): + if i < keep: + print(f"\n[KEEP] {info['tag']}") + kept_count += 1 + continue + + print(f"\n[DELETE] {info['tag']} (digest: {info['digest'][:20]}...)") + if delete_tag(registry, repo, info["digest"], username, password): + print(f" [OK] Deleted {info['tag']}") + deleted_count += 1 + else: + print(f" [WARN] Failed to delete {info['tag']} (will retry next run)") + + time.sleep(0.2) # Be nice to the registry + + print(f"\n=== Prune Summary ===") + print(f"Tags kept: {kept_count}") + print(f"Tags deleted: {deleted_count}") + print(f"Tags protected (non-SHA): {len(non_sha_tags)}") + + return True + + +def parse_http_date(date_str: str) -> float: + """Parse HTTP Date header to timestamp.""" + from email.utils import parsedate_to_datetime + try: + return parsedate_to_datetime(date_str).timestamp() + except Exception: + return 0 + + +def main(): + args = parse_args() + + # Validate required args + registry = args.registry or os.environ.get("REGISTRY_HOST") + repo = args.repo or os.environ.get("REGISTRY_REPO") + username = args.username or os.environ.get("REGISTRY_USERNAME") + password = args.password or os.environ.get("REGISTRY_PASSWORD") + + if not all([registry, repo, username, password]): + print("[ERROR] Missing required arguments. Need: --registry, --repo, --username, --password") + print("Or set environment variables: REGISTRY_HOST, REGISTRY_REPO, REGISTRY_USERNAME, REGISTRY_PASSWORD") + sys.exit(1) + + print(f"Registry: {registry}") + print(f"Repository: {repo}") + print(f"Username: {username}") + + try: + success = prune_tags(registry, repo, username, password, args.keep) + if success: + print("\n[OK] Prune completed successfully") + sys.exit(0) + else: + print("\n[WARN] Prune completed with some errors") + sys.exit(0) # Exit 0 per requirement - never fail workflow + except Exception as e: + print(f"\n[ERROR] Prune failed with exception: {e}") + sys.exit(0) # Exit 0 per requirement - never fail workflow + + +if __name__ == "__main__": + main() diff --git a/.gitea/scripts/update-gitops.py b/.gitea/scripts/update-gitops.py new file mode 100644 index 0000000..03805a0 --- /dev/null +++ b/.gitea/scripts/update-gitops.py @@ -0,0 +1,145 @@ +#!/usr/bin/env python3 +""" +Update GitOps kustomization.yaml with new image SHA tags. + +Usage: + python3 update-gitops.py \ + --repo /path/to/nxtgauge-gitops \ + --service gateway \ + --sha abc123def456... + +This script: +1. Updates the newTag for the specified service to the SHA +2. Commits and pushes to the gitops repo +3. ArgoCD detects the change and deploys +""" + +import argparse +import os +import re +import subprocess +import sys + + +def run(cmd: list[str], cwd: str = None) -> tuple[int, str, str]: + """Run a command and return (returncode, stdout, stderr).""" + result = subprocess.run(cmd, cwd=cwd, capture_output=True, text=True) + return result.returncode, result.stdout, result.stderr + + +def update_kustomization(kustomization_path: str, service: str, sha: str) -> bool: + """Update the newTag for a service in kustomization.yaml.""" + with open(kustomization_path, "r") as f: + content = f.read() + + # Pattern to find image entry for the service + # Matches: - name: registry.nxtgauge.com/nxtgauge-rust-{service} + # newTag: something + pattern = rf'(\s+-\s+name:\s+registry\.nxtgauge\.com/nxtgauge-rust-{re.escape(service)}\n\s+newTag:\s+)[^\n]+' + + replacement = rf'\g<1>{sha}' + + new_content, count = re.subn(pattern, replacement, content) + + if count == 0: + # Try without the nxtgauge-rust- prefix (for frontend, admin, etc) + pattern = rf'(\s+-\s+name:\s+registry\.nxtgauge\.com/nxtgauge-{re.escape(service)}\n\s+newTag:\s+)[^\n]+' + new_content, count = re.subn(pattern, replacement, content) + + if count == 0: + print(f"[ERROR] Could not find image entry for service: {service}") + return False + + with open(kustomization_path, "w") as f: + f.write(new_content) + + print(f"[OK] Updated {service} to SHA {sha}") + return True + + +def main(): + parser = argparse.ArgumentParser(description="Update GitOps with new image SHA") + parser.add_argument("--repo", required=True, help="Path to gitops repo") + parser.add_argument("--service", required=True, help="Service name (e.g., gateway, users, frontend-solid)") + parser.add_argument("--sha", required=True, help="Git SHA to deploy") + parser.add_argument("--message", default=None, help="Commit message") + args = parser.parse_args() + + service_image_map = { + "gateway": "nxtgauge-rust-gateway", + "users": "nxtgauge-rust-users", + "companies": "nxtgauge-rust-companies", + "jobs": "nxtgauge-rust-jobs", + "leads": "nxtgauge-rust-leads", + "job-seekers": "nxtgauge-rust-job-seekers", + "customers": "nxtgauge-rust-customers", + "payments": "nxtgauge-rust-payments", + "employees": "nxtgauge-rust-employees", + "photographers": "nxtgauge-rust-photographers", + "makeup-artists": "nxtgauge-rust-makeup-artists", + "tutors": "nxtgauge-rust-tutors", + "developers": "nxtgauge-rust-developers", + "video-editors": "nxtgauge-rust-video-editors", + "graphic-designers": "nxtgauge-rust-graphic-designers", + "social-media-managers": "nxtgauge-rust-social-media-managers", + "fitness-trainers": "nxtgauge-rust-fitness-trainers", + "catering-services": "nxtgauge-rust-catering-services", + "ugc-content-creators": "nxtgauge-rust-ugc-content-creators", + "cron": "nxtgauge-rust-cron", + "frontend-solid": "nxtgauge-frontend-solid", + "admin-solid": "nxtgauge-admin-solid", + "ai-assistant": "nxtgauge-ai-assistant", + } + + # Determine which kustomization file to update + if service_image_map.get(args.service): + image_name = service_image_map[args.service] + else: + image_name = f"nxtgauge-{args.service}" + + # Find the right kustomization file based on service + if "frontend" in args.service or "admin" in args.service: + kustomization_path = os.path.join(args.repo, "apps/nxtgauge-frontend-solid/overlays/prod/kustomization.yaml") + if not os.path.exists(kustomization_path): + kustomization_path = os.path.join(args.repo, "apps/nxtgauge-frontend-solid/base/kustomization.yaml") + elif "ai-assistant" in args.service: + kustomization_path = os.path.join(args.repo, "apps/nxtgauge-ai-assistant/overlays/prod/kustomization.yaml") + if not os.path.exists(kustomization_path): + kustomization_path = os.path.join(args.repo, "apps/nxtgauge-ai-assistant/base/kustomization.yaml") + else: + kustomization_path = os.path.join(args.repo, "apps/nxtgauge-backend-rust/overlays/prod/kustomization.yaml") + + if not os.path.exists(kustomization_path): + print(f"[ERROR] Kustomization file not found: {kustomization_path}") + sys.exit(0) # Exit 0 per workflow requirement + + print(f"Updating {kustomization_path} for service {args.service}") + + if not update_kustomization(kustomization_path, args.service, args.sha): + sys.exit(0) # Exit 0 per workflow requirement + + # Git add, commit, push + commit_msg = args.message or f"chore: deploy {args.service}@{args.sha}" + + run(["git", "add", "-A"], cwd=args.repo) + code, stdout, stderr = run(["git", "diff", "--cached", "--stat"], cwd=args.repo) + + if not stdout.strip(): + print("[INFO] No changes to commit") + sys.exit(0) + + print(f"Changes to commit:\n{stdout}") + + run(["git", "commit", "-m", commit_msg], cwd=args.repo) + code, stdout, stderr = run(["git", "push"], cwd=args.repo) + + if code != 0: + print(f"[ERROR] Push failed: {stderr}") + else: + print(f"[OK] Pushed update to gitops repo") + + sys.exit(0) # Always exit 0 per workflow requirement + + +if __name__ == "__main__": + main() diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..8ad3d10 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,93 @@ +name: build-and-push + +on: + push: + branches: + - main + - high-performance + +jobs: + build: + runs-on: ubuntu-latest + env: + DOCKER_HOST: unix:///var/run/docker.sock + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + run: | + export DOCKER_HOST=unix:///var/run/docker.sock + docker version + docker buildx create --use || true + docker buildx inspect --bootstrap + + - name: Login to Registry + env: + REGISTRY_HOSTPORT: ${{ secrets.REGISTRY_HOSTPORT }} + REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} + REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} + run: | + set -euo pipefail + export DOCKER_HOST=unix:///var/run/docker.sock + test -n "$REGISTRY_HOSTPORT" + echo "$REGISTRY_PASSWORD" | docker login "$REGISTRY_HOSTPORT" -u "$REGISTRY_USERNAME" --password-stdin + + - name: Build and push + env: + REGISTRY_HOSTPORT: ${{ secrets.REGISTRY_HOSTPORT }} + run: | + set -euo pipefail + export DOCKER_HOST=unix:///var/run/docker.sock + docker buildx build --push \ + -f Dockerfile \ + -t "$REGISTRY_HOSTPORT/nxtgauge-admin-solid:${{ gitea.sha }}" \ + -t "$REGISTRY_HOSTPORT/nxtgauge-admin-solid:high-performance-latest" \ + . + + - name: Prune old image tags (keep latest 1 SHA) + if: success() + continue-on-error: true + env: + REGISTRY_HOST: ${{ secrets.REGISTRY_HOSTPORT }} + REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }} + REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} + run: | + set -euo pipefail + python3 .gitea/scripts/registry_prune.py \ + --registry "$REGISTRY_HOST" \ + --repo "nxtgauge-admin-solid" \ + --username "$REGISTRY_USERNAME" \ + --password "$REGISTRY_PASSWORD" \ + --keep 1 + + - name: Update GitOps and trigger deployment + if: success() + continue-on-error: true + env: + GITEOPS_REPO: ${{ secrets.GITEOPS_REPO }} + GITEOPS_SSH_KEY: ${{ secrets.GITEOPS_SSH_KEY }} + run: | + set -euo pipefail + + if [ -z "$GITEOPS_REPO" ]; then + echo "GITEOPS_REPO secret not set, skipping GitOps update" + exit 0 + fi + + GITEOPS_DIR=$(mktemp -d) + git clone "$GITEOPS_REPO" "$GITEOPS_DIR" + cd "$GITEOPS_DIR" + + mkdir -p ~/.ssh + echo "$GITEOPS_SSH_KEY" > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 + ssh-keyscan github.com >> ~/.ssh/known_hosts 2>/dev/null + + python3 .gitea/scripts/update-gitops.py \ + --repo "$GITEOPS_DIR" \ + --service "admin-solid" \ + --sha "${{ gitea.sha }}" \ + --message "chore: deploy admin-solid@${{ gitea.sha }}" + + rm -rf "$GITEOPS_DIR" diff --git a/.github/workflows/sync-to-gitea.yml b/.github/workflows/sync-to-gitea.yml new file mode 100644 index 0000000..a9b0694 --- /dev/null +++ b/.github/workflows/sync-to-gitea.yml @@ -0,0 +1,46 @@ +name: sync-to-gitea + +on: + push: + branches: + - high-performance + +jobs: + sync: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Sync to Gitea + env: + GITEA_TOKEN: ${{ secrets.GITEA_SECRET }} + REPO: ${{ github.event.repository.name }} + BRANCH: ${{ github.ref_name }} + run: | + set -euxo pipefail + export GIT_TERMINAL_PROMPT=0 + export GIT_TRACE=1 + export GIT_CURL_VERBOSE=1 + + USER="Admin" + TARGET="https://ci.nxtgauge.com/Admin/${REPO}.git" + AUTH="$(printf '%s' "${USER}:${GITEA_TOKEN}" | base64 -w0)" + + test -n "${GITEA_TOKEN:-}" || (echo "GITEA_TOKEN empty" && exit 1) + curl -fsS -H "Authorization: token ${GITEA_TOKEN}" https://ci.nxtgauge.com/api/v1/user >/dev/null + curl -fsS -H "Authorization: Basic ${AUTH}" "${TARGET}/info/refs?service=git-receive-pack" >/dev/null + + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git config --global http.version HTTP/1.1 + git config --global http.postBuffer 524288000 + git remote remove gitea 2>/dev/null || true + git remote add gitea "${TARGET}" + + git -c http.extraheader="Authorization: Basic ${AUTH}" push gitea "HEAD:${BRANCH}" --force + git -c http.extraheader="Authorization: Basic ${AUTH}" push gitea --tags --force diff --git a/.playwright-cli/console-2026-04-21T21-45-00-110Z.log b/.playwright-cli/console-2026-04-21T21-45-00-110Z.log new file mode 100644 index 0000000..f4548e6 --- /dev/null +++ b/.playwright-cli/console-2026-04-21T21-45-00-110Z.log @@ -0,0 +1,2045 @@ +[ 262ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 114698ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 114810ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 145808ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 615185ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 787278ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 965219ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 975362ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 981088ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 986277ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1197263ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1223841ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1368790ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1374809ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1381443ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1386274ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1391189ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1547506ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 1602309ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2187472ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2201061ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2253884ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2332602ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2400754ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2462157ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2506192ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2512921ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2544635ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2576497ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2630738ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2700567ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2778406ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2788360ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2823490ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2863849ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2906347ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2931643ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 2974062ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3035204ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3793466ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3802186ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3840028ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3874627ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3922574ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3954747ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3964178ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 3979108ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 4015197ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 4059403ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 4065358ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 4095484ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 4117966ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 4607148ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 4623656ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 5270647ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 5276182ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 5306326ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 6089494ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 6460053ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 7294688ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 7552337ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[ 7554713ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 7611591ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 7688892ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[ 7689312ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[ 9803465ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[ 9804310ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[42527490ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[42528360ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[44466997ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[44468421ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[44756715ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[44757518ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[44954194ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[44954751ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[45280227ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[45281000ms] [VERBOSE] [DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o @ http://localhost:3001/login:0 +[46566322ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:3001/_build/@vite/client:963 +[46566421ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46567439ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46568442ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46569446ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46570452ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46571456ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46572467ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46573476ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46574513ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46575579ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46576626ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46577835ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46579322ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46580700ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46583342ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46588286ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46591296ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46596574ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46601475ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46605948ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46609815ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46612054ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46616401ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46619261ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46621555ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46626412ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46629659ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46632187ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46635092ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46639708ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46644845ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46648655ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46650978ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46653097ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46657633ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46661106ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46665228ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46670893ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46673368ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46678647ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46681912ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46684162ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46689320ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46694098ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46697426ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46702454ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46705762ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46708168ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46712211ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46714501ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46717673ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46721630ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46724700ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46729531ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46732801ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46734888ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46740426ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46745987ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46750736ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46755522ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46758970ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46761216ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46766842ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46769351ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46772734ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46776709ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46779598ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46784311ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46789188ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46791812ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46794330ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46800328ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46804619ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46808378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46814052ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46816428ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46820614ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46822827ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46827713ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46833647ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46838477ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46841938ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46847575ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46849884ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46854369ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46857472ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46861520ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46866762ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46870967ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46875213ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46880773ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46884945ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46890294ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46893710ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46895736ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46899179ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46902417ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46905129ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46910535ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46912814ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46916527ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46919801ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46925132ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46930263ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46935395ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46937936ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46940810ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46945941ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46949262ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46954551ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46957118ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46962656ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46968304ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46971761ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46977643ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46981817ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46987594ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46992767ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[46996662ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47002074ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47007142ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47012144ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47016140ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47020814ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47025150ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47031065ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47033556ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47038537ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47042718ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47047092ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47050763ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47055325ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47057612ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47062902ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47065729ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47071544ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47076278ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47078725ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47082007ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47084775ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47089358ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47095183ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47100478ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47104070ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47107320ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47112710ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47117198ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47119752ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47122891ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47127584ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47130466ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47134668ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47138559ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47143600ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47147310ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47150657ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47154835ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47160834ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47162856ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47165252ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47169424ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47173697ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47177990ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47180700ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47186378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47189813ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47193373ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47196694ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47200044ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47203161ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47207548ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47209770ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47211954ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47216595ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47221006ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47223651ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47228139ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47230423ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47235681ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47239487ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47243378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47245896ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47249114ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47251973ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47257551ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47261930ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47265010ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47270606ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47274539ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47277238ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47280950ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47283402ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47287112ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47289808ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47294962ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47299075ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47301480ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47304249ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47310174ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47313681ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47315868ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47319185ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47323620ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47329535ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47332050ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47337699ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47340289ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47343200ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47347648ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47352938ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47357969ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47360295ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47363035ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47368496ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47371454ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47375633ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47380852ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47383584ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47388916ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47391659ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47395878ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47400805ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47405036ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47409402ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47414589ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47417215ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47420281ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47424142ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47430055ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47432415ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47437827ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47442144ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47447965ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47452998ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47457791ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47462044ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47464691ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47467977ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47471800ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47475658ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47477928ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47480596ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47484110ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47488335ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47493905ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47496770ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47500011ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47505852ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47508439ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47512867ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47515390ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47517465ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47521520ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47524524ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47529052ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47532345ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47537152ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47541312ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47544549ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47548211ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47550438ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47555300ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47558612ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47562220ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47567767ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47571732ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47574676ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47577596ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47579976ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47583046ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47585775ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47588425ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47591485ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47594775ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47598441ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47600786ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47604608ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47608541ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47611883ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47617266ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47619840ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47623279ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47627903ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47633199ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47637442ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47641217ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47645661ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47646663ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47647667ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47648670ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47649672ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47650676ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47651682ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47652692ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47653707ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47654734ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47655761ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47656802ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47657983ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47659444ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47660964ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47663947ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47668710ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47674002ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47678216ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47684202ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47688976ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47691780ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47696402ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47702038ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47706802ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47710994ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47716877ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47719394ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47723555ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47726875ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47731046ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47734411ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47740228ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47745371ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47748441ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47751895ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47756230ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47761476ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47765053ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47770098ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47773507ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47779301ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47783621ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47786807ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47791425ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47795710ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47800266ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47805736ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47808009ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47811217ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47815552ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47820459ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47825707ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47828604ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[47997600ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48001269ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48005859ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48008400ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48012338ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48017152ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48021858ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48026798ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48028892ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48033331ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48037692ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48039790ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48043915ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48048346ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48052173ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48057095ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48062765ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48066584ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48069279ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48073543ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48076092ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48081351ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48084101ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48086807ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48089829ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48093911ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48096702ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48102045ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48107068ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48111462ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48115592ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48118121ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48121318ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48125173ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48128409ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48131856ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48137081ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48140985ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48145611ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48150227ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48152802ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48157478ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48160568ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48165815ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48171469ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48172474ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48173480ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48174482ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48175485ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48176489ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48177495ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48178502ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48179526ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48180552ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48181615ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48182778ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48183890ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48185046ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48187275ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48189195ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48191914ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48194921ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48200721ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48202964ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48206370ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48209838ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48214232ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48218889ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48223500ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48227953ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48232932ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48236912ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48241222ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48246864ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48250486ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48256409ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48261356ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48264795ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48269831ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48273947ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48278304ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48282249ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48286873ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48291611ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48292616ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48293619ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48294622ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48295625ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48296631ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48297635ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48298646ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48299657ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48300669ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48301727ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48302778ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48303852ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48305002ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48306805ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48308505ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48311877ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48316640ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48319374ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48321463ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48325058ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48329916ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48335270ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48337782ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48342045ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48346986ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48350928ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48353295ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48355462ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48358362ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48362770ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48367497ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48372466ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48375332ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48380059ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48384297ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48388420ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48392455ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48394722ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48398956ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48404412ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48409526ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48415441ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48420163ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48423231ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48428338ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48432828ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48438730ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48442712ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48446250ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48450431ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48453962ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48459527ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48465084ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48469384ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48474322ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48478330ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48480458ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48486411ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48491690ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48497297ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48503026ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48508154ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48512382ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48516164ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48520865ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48524318ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48526454ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48529093ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48531167ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48535051ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48540995ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48544637ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48548488ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48550973ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48554020ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48558951ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48563202ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48565371ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48571265ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48576986ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48580997ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48586370ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48589343ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48592450ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48595738ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48599374ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48604291ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48608700ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48611231ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48614073ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48617410ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48623013ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48625102ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48627398ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48631450ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48637141ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48639868ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48641973ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48645964ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48648965ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48651054ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48653089ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48656646ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48659944ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48664463ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48666504ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48671871ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48676825ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48681864ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48685862ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48690754ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48696474ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48700355ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48703997ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48706122ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48710437ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48715813ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48720055ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48724955ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48729010ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48731435ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48734611ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48739845ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48745772ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48750246ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48754452ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48759423ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48764423ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48766519ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48768746ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48772241ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48773246ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48774251ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48775254ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48776257ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48777261ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48778268ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48779280ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48780294ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48781336ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48782370ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48783533ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48784771ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48786042ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48788188ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48790202ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48793166ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48795687ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48798595ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48801745ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48805784ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48811175ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48816174ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48818490ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48824281ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48829185ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48834939ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48839666ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48843887ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48849248ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48852931ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48855471ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48858415ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48864207ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48869975ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48875980ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48879005ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48882288ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48887377ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48893251ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48896692ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48901611ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48907127ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48911281ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48913437ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48917461ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48919615ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48923904ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48928329ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48931213ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48933890ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48938449ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48944429ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48947779ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48950129ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48955890ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48958198ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48963544ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48968371ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48970555ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48973791ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48975963ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48980024ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48983095ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48985127ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48989029ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48992697ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[48997371ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49000706ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49003456ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49006231ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49011828ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49015538ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49017989ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49023918ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49029704ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49034429ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49038714ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49043882ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49046387ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49050637ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49054999ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49058731ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49062686ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49064907ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49069820ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49073011ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49075315ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49079251ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49084738ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49087732ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49093460ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49098427ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49101919ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49104786ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49110322ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49116302ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49122194ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49124818ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49129640ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49134440ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49138510ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49143064ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49145116ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49149003ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49152647ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49156774ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49159801ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49163260ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49167169ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49171003ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49174770ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49178795ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49181170ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49186544ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49188798ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49194477ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49200187ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49204636ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49207236ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49210802ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49216000ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49218092ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49223556ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49227930ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49231899ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49234841ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49237353ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49240186ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49242649ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49246759ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49248801ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49254218ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49257842ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49263666ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49269250ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49274646ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49277185ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49279858ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49283346ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49287234ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49290099ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49295787ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49297849ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49300398ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49304029ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49308365ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49310975ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49315830ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49321378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49327272ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49332059ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49336396ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49339016ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49342127ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49347718ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49352169ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49357099ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49361928ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49366736ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49369008ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49374407ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49379905ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49385622ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49389995ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49392556ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49396812ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49399857ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49403473ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49408074ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49410464ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49415144ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49419673ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49425563ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49428784ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49432122ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49434736ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49437400ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49440428ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49443028ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49448079ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49451943ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49454001ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49458444ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49463403ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49468670ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49472655ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49476664ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49479073ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49481619ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49484132ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49489543ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49494341ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49500166ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49503792ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49507226ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49511684ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49516610ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49521517ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49524238ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49529659ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49534017ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49539696ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49545685ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49549370ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49554487ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49559142ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49564088ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49566243ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49570949ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49575281ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49579032ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49583940ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49588488ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49591419ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49595611ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49599826ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49602973ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49606320ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49609774ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49613774ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49618424ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49623008ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49626527ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49629259ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49631727ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49637209ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49641533ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49646025ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49651972ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49655281ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49661206ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49666016ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49668063ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49671239ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49677168ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49682054ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49687779ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49692522ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49697617ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49699978ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49705149ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49710465ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49715441ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49720680ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49722773ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49725436ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49731221ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49736927ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49741620ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49744632ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49748489ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49753820ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49755987ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49760354ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49762783ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49768053ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49772664ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49778539ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49782415ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49785052ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49789635ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49792331ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49795907ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49799515ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49804515ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49809697ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49812078ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49816204ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49821884ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49824513ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49829041ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49833914ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49839062ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49841190ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49847147ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49853074ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49854078ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49855080ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49856085ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49857089ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49858096ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49859104ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49860116ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49861128ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49862168ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49863229ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49864339ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49865537ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49867068ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49868980ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49870971ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49874194ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49879007ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49883908ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49888156ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49890234ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49893361ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49896243ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49900628ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49903642ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49907909ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49913777ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49919754ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49922847ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49926125ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49928644ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49932068ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49935787ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49940114ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49945157ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49947242ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49949520ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49953313ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49957197ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49959419ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49964858ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49968105ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49972883ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49977563ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49981675ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49984767ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49987971ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49993478ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[49996001ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50000229ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50004686ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50007546ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50012756ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50016911ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50019861ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50024428ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50027237ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50031504ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50034337ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50036861ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50038994ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50041554ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50044033ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50047820ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50050957ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50056850ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50061889ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50066162ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50070345ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50075368ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50077552ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50080163ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50084682ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50087509ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50093301ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50094307ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50095310ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50096313ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50097316ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50098321ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50099325ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50100330ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50101340ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50102360ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50103435ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50104480ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50105579ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50106822ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50108230ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50109967ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50115200ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50117821ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50121453ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50126104ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50131377ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50134725ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50136917ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50139088ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50142222ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50148085ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50151537ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50154592ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50158648ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50161190ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50164280ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50167129ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50170201ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50172588ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50175673ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50181301ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50186027ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50190967ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50196410ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50201454ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50206333ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50211995ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50216612ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50218886ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50222419ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50225626ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50228553ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50234164ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50239287ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50241801ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50247106ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50249593ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50254384ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50258013ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50263315ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50266890ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50272333ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50274522ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50278942ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50281165ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50284477ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50288163ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50293342ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50299083ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50304289ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50306871ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50310524ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50314206ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50317791ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50322851ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50328474ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50332059ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50337654ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50342767ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50344868ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50350457ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50352584ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50356086ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50358345ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50361174ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50364125ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50366240ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50370084ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50375789ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50378512ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50381086ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50384599ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50389824ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50392120ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50394154ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50398702ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50402619ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50405192ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50410460ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50412799ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50414891ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50418747ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50423551ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50426653ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50432477ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50435144ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50437836ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50440887ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50443799ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50449180ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50451216ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50453959ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50454962ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50455965ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50456968ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50457972ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50458979ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50459984ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50460991ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50462007ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50463051ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50464134ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50465270ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50466400ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50467903ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50469162ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50471596ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50475792ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50480028ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50482256ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50488180ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50493101ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50496983ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50499036ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50502025ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50506355ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50510921ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50515383ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50517626ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50521245ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50525553ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50528867ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50534077ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50538835ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50541427ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50547076ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50549792ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50551853ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50557778ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50562459ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50565204ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50568995ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50573705ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50578999ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50582584ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50587269ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50591644ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50594328ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50596900ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50602242ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50605743ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50608559ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50613044ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50618516ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50621765ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50624278ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50628190ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50633891ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50636844ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50639970ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50645410ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50650651ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50655561ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50661106ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50667033ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50669044ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50672283ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50675933ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50681546ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50685693ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50689816ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50693400ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50698267ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50703913ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50706053ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50709561ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50712322ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50715783ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50718697ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50721945ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50726857ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50729219ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50732293ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50736129ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50741831ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[50744132ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51147851ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51151405ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51154647ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51157796ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51160283ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51165025ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51170951ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51176773ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51182267ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51184630ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51189049ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51191821ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51194067ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51198203ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51200911ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51204814ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51208196ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51211041ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51215708ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51216820ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51217834ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51218851ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51219864ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51220876ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51221881ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51222888ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51223907ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51224927ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51225972ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51227056ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51228259ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51229653ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51231695ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51234275ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51236426ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51242372ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51247614ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51250752ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51253293ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51258177ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51262030ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51264698ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51268224ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51271418ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51273785ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51276363ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51282274ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51287111ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51292119ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51297451ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51303196ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51307589ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51310124ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51312618ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51315701ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51318318ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51321593ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51326315ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51328958ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51332762ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51337835ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51341746ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51344133ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51349445ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51354560ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51357527ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51362730ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51365779ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51371085ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51374461ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51380151ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51384919ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51388061ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51391628ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51396748ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51398855ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51401636ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51407463ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51412886ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51418473ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51421213ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51426739ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51431439ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51436414ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51441267ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51444787ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51447151ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51449620ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51451674ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51455267ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51458650ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51464271ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51467976ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51473021ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51478131ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51483366ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51485581ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51489533ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51491890ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51496076ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51501539ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51503844ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51509432ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51513617ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51515713ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51520309ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51525500ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51529709ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51535464ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51539366ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51544987ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51548841ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51554288ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51557343ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51562769ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51567500ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51571960ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51577018ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51582371ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51587457ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51593200ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51597520ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51602521ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51606201ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51611028ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51613853ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51617592ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51622021ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51625628ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51629480ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51632433ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51636627ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51639058ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51641944ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51647827ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51650087ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51653885ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51658168ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51663277ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51668221ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51673239ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51678748ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51681350ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51685137ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51689434ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51691775ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51694144ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51698706ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51702234ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51706534ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51712314ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51718146ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51724150ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51728138ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51731339ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51736852ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51739981ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51745862ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51751045ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51754382ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51758060ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51760742ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51763412ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51766579ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51771436ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51776572ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51779733ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51781847ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51784403ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51788428ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51790446ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51793417ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51798083ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51801312ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51804886ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51809465ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51813332ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51817995ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51820712ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51823228ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51826903ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51831380ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51835687ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51838149ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51840636ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51843605ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51847217ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51850643ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51856283ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51858804ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51860895ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51863051ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51868438ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51874401ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51878827ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51880979ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51885264ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51889010ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51893290ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51897065ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_INVALID_ARGUMENT @ http://localhost:3001/_build/@vite/client:1034 +[51902584ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51906667ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51911831ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51917574ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51920374ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51925109ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51929899ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51935424ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51938847ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51944773ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51947800ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51950807ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51953506ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51957574ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51962897ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51968826ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51973238ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51975831ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51981640ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51986472ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51991293ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[51995300ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52000451ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52005512ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52011378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52015053ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52019605ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52025177ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52030083ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52034299ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52037308ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52040005ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52043424ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52048669ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52053394ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52058749ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52061986ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52066126ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52069663ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52075161ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52077955ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52080870ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52083019ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52087499ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52092228ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52094325ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52099773ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52105156ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52110658ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52115695ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52119909ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52123395ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52126187ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52129883ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52133387ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52136187ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52139030ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52143932ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52149704ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52154144ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52159677ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52162889ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52165936ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52168635ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52174488ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52179926ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52183888ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52189270ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52195198ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52199172ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52201246ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52205678ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52209519ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52214316ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52216519ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52219089ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52222894ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52225153ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52228879ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52233554ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52237925ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52242129ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52245204ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52249477ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52252548ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52254629ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52260006ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52263592ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52267048ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52269948ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52272658ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52275441ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52280454ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52285929ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52288513ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52293747ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52299572ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52303233ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52305348ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52308856ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52314147ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52317157ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52322968ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52328379ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52331047ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52334360ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52337848ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52341221ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52347155ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52349410ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52352475ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52355386ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52358932ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52361683ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52365647ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52368164ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52372353ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52378195ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52381569ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52384485ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52386868ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52389167ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52393483ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52398950ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52402085ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52408082ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52411138ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52415707ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52421317ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52425716ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52431336ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52436058ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52440176ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52445480ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52451435ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52453562ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52459209ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52462863ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52465127ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52467599ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52471067ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52474471ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52477426ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52480741ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52485274ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52490178ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52493447ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52497654ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52499914ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52502932ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52507107ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52512199ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52516290ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52521650ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52526842ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52530063ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52533988ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52539687ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52542877ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52545759ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52548016ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52553582ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52556948ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52560918ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52565450ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52569938ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52575320ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52579286ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52581807ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52585280ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52590828ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52596159ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52599953ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52602434ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52604448ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52609625ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52611899ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52615762ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52619159ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52622947ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52626013ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52628233ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52631672ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52635587ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52641296ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52647168ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52649298ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52653877ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52657111ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52659117ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52662242ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52667649ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52669765ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52672835ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52675282ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52679342ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52683170ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52687586ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52690489ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52692497ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52695464ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52698527ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52701903ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52705817ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52708695ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52712742ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52717573ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52722057ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52724442ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52727165ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52732761ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52736292ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52742223ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52746098ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52751351ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52756381ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52759114ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52763400ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52765632ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52768242ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52772319ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52776932ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52782019ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52787355ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52792514ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52795280ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52800941ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52804061ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52809493ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52812241ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52815538ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52820723ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52823046ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52827697ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52831638ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52836090ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52840181ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52843579ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52846579ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52850891ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52853180ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52859154ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52863723ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52869638ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52871772ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52876772ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52880221ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52886155ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52891080ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52894403ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52897955ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52901842ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52906963ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52912144ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52916979ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52919028ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52923082ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52925678ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52930941ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52935711ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52938281ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52940378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52943915ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52946385ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52952040ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52957313ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52961191ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52965055ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52968413ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52971030ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52975227ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52977689ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52982420ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52985064ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52987498ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52990067ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52995895ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[52999977ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53003556ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53008387ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53012917ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53017582ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53020513ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53024147ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53027164ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53031711ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53033781ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53037622ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53039878ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53045537ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53049367ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53051606ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53054793ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53058882ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53062789ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53067235ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53073054ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53078985ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53083539ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53087263ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53090375ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53096295ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53099560ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53103897ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53108692ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53112059ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53115226ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53119331ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53123136ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53126328ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53132226ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53134238ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53138042ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53142793ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53145210ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53150753ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53155100ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53157739ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53160643ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53165442ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53168419ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53170582ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53173886ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[53176812ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[54192416ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55237881ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55270625ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55276550ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55279811ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55285558ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55291414ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55295603ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55299303ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55301957ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55305134ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55310416ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55315224ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55318327ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55321135ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55323974ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55327322ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55330973ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55336232ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55339333ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55341842ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55345578ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55350011ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55355541ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55358077ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55364014ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55369575ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55375128ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55379856ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55385251ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55389940ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55395425ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55400775ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55402912ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55406101ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55411298ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55417010ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55421025ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55425730ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55431101ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55436725ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55440859ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55445792ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55448811ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55453910ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55458479ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55459484ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55460488ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55461490ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55462496ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55463499ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55464504ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55465513ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55466529ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55467566ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55468643ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55469785ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55470926ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55472375ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55473993ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55476335ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55479260ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[55484019ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[56540950ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[56545730ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[57601717ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58049161ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58052266ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58057215ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58059809ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58063330ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58069197ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58072842ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58078839ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58083570ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58086944ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58089943ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58093869ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58096133ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58101272ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58106272ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58111111ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58114568ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58116634ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58122244ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58124928ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58130277ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58133067ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58136990ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58142822ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58148519ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58150913ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58156475ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58159469ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58163152ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58167373ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58170119ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58173673ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58179077ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58181769ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58187403ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58189602ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58194680ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58198894ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58204255ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58209672ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58213970ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58216844ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58220036ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58223352ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58226439ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58229052ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58232152ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58234334ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58239156ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58242700ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58445875ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58448423ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58452772ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58455297ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58458649ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58463015ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58467365ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58469815ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58472615ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58475238ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58479706ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58485404ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58491405ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58495372ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58499748ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58504543ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58507230ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58513050ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58516194ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58521757ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58524626ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58528065ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58531913ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58535578ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58540614ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58546646ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58552083ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58556091ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58559275ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58564349ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58570343ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58574378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58578762ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58583989ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58589375ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58591457ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58593759ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58598698ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58601477ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58604754ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58609032ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58611407ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58613590ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58616376ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58621031ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58627018ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58632321ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58635189ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58639787ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58642239ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58645303ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58647801ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58650255ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58653424ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58655617ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58660563ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58664991ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58668313ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58674197ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58678464ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58684398ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58688610ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58692621ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58696502ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58699170ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58703454ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58705691ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58709284ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58714143ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58719946ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58724552ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58728077ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58734026ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58739714ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58743034ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58747374ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58751957ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58756417ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58761059ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58763788ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58766531ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58769021ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58774388ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58776865ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58782089ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58787829ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58792611ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58795229ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58798355ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58800987ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58805705ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58808137ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58810163ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58815836ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58818379ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58823095ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58828859ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58832147ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58834193ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58839573ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58843495ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58849376ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58852300ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58858201ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58864034ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58867746ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58872587ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58875063ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58877929ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58882477ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58887800ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58891923ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58897006ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58901124ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58905024ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58910822ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58915707ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58919853ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58922648ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58926269ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58927274ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58928277ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58929279ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58930282ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58931285ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58932291ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58933307ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58934320ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58935354ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58936426ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58937541ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58938744ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58939954ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58941639ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58943982ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58948301ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58952641ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58958077ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58960274ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58963733ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58966880ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58970417ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58975779ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58979074ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58984329ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58988709ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58993781ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[58997343ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59001807ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59004349ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59007817ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59012821ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59018679ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59051954ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59056785ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59059259ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59061458ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59065659ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59069902ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59071914ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59077055ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59080878ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59086132ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59090030ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59095499ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59099709ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59103209ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59106315ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59110487ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59113621ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59117213ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59119889ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59122852ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59125607ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59128796ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59133546ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59135714ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59141368ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59145846ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59150493ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59156463ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59160768ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59165635ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59168244ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59172840ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59176478ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59181063ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59184378ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59188194ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59197618ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59201993ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59202997ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59204001ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59205006ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59206010ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59207013ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59208018ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59209029ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59210037ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59211053ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59212116ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59213180ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59214413ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59215733ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59217961ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59219961ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59223655ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59227161ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59230511ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59235901ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59239402ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59241937ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59244076ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59246267ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59250030ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59252106ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59255311ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59258880ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59263062ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59265455ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59270425ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59274975ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59276984ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59279542ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59281666ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59287644ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59290055ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59295602ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59301468ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59306987ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59311268ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 +[59317044ms] [ERROR] WebSocket connection to 'ws://localhost:50448/_build/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED @ http://localhost:3001/_build/@vite/client:1034 diff --git a/.playwright-cli/page-2026-04-21T21-45-02-136Z.yml b/.playwright-cli/page-2026-04-21T21-45-02-136Z.yml new file mode 100644 index 0000000..66da5fe --- /dev/null +++ b/.playwright-cli/page-2026-04-21T21-45-02-136Z.yml @@ -0,0 +1,70 @@ +- generic [ref=e2]: + - main [ref=e3]: + - generic: + - generic: + - generic: + - img + - generic: + - img + - generic: + - img + - generic: + - img + - generic: + - img + - navigation [ref=e5]: + - link "Nxtgauge home" [ref=e6] [cursor=pointer]: + - /url: / + - img "NXTGAUGE" [ref=e7] + - generic [ref=e8]: + - link "Home" [ref=e9] [cursor=pointer]: + - /url: / + - link "Professionals" [ref=e10] [cursor=pointer]: + - /url: /professionals + - link "About Us" [ref=e11] [cursor=pointer]: + - /url: /about + - link "Help Center" [ref=e12] [cursor=pointer]: + - /url: /help-center + - link "Contact Us" [ref=e13] [cursor=pointer]: + - /url: /contact + - link "Login" [ref=e15] [cursor=pointer]: + - /url: /login + - generic [ref=e16]: + - generic [ref=e17]: + - img "Public Workspace" [ref=e18] + - generic [ref=e20]: + - paragraph [ref=e21]: Public Workspace + - heading "Welcome Back To Nxtgauge" [level=1] [ref=e22] + - paragraph [ref=e23]: Sign in to manage your profile, portfolio, and verification in one place. + - generic [ref=e24]: + - heading "Sign In" [level=2] [ref=e25] + - generic [ref=e26]: + - generic [ref=e27]: EMAIL + - textbox "EMAIL" [ref=e28]: + - /placeholder: Enter your email + - paragraph [ref=e29]: • Enter a valid email format + - generic [ref=e30]: + - generic [ref=e31]: PASSWORD + - generic [ref=e32]: + - textbox "PASSWORD" [ref=e33]: + - /placeholder: Enter your password + - button "Show password" [ref=e34] [cursor=pointer]: + - img [ref=e35] + - generic [ref=e38]: + - generic [ref=e39]: CAPTCHA + - generic [ref=e40]: + - button "↻" [ref=e41] + - generic "Captcha image" [ref=e42] + - textbox "Enter captcha" [ref=e43] + - button "Sign In" [ref=e44] + - generic [ref=e45]: + - paragraph [ref=e46]: Secure login with email verification. + - paragraph [ref=e47]: + - text: New user? + - link "Sign Up" [ref=e48] [cursor=pointer]: + - /url: /signup + - paragraph [ref=e49]: + - link "Forgot Password?" [ref=e50] [cursor=pointer]: + - /url: /forgot-password + - button "AI Assistant" [ref=e51] [cursor=pointer]: + - img [ref=e52] \ No newline at end of file diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index 35f0c0a..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,25 +0,0 @@ -when: - branch: [main, high-performance] - event: push - -steps: - - name: build-and-push - image: woodpeckerci/plugin-kaniko:2.1.1 - settings: - registry: - from_secret: REGISTRY_HOSTPORT - repo: nxtgauge-admin-solid - dockerfile: Dockerfile.simple - tags: - - ${CI_COMMIT_SHA} - - latest - - high-performance-latest - username: - from_secret: REGISTRY_USERNAME - password: - from_secret: REGISTRY_PASSWORD - insecure: true - insecure_pull: true - skip_tls_verify: true - platforms: linux/amd64 - cache: false diff --git a/Dockerfile b/Dockerfile index c8a9997..7248b86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ ENV NODE_OPTIONS="--max-old-space-size=4096" RUN npm run build # Runtime stage -FROM node:20-alpine +FROM registry.nxtgauge.com/node:20-alpine WORKDIR /app # Copy built output diff --git a/Dockerfile.simple b/Dockerfile.simple index 46a1a7c..8436eb1 100644 --- a/Dockerfile.simple +++ b/Dockerfile.simple @@ -1,4 +1,4 @@ -FROM node:20-alpine +FROM registry.nxtgauge.com/node:20-alpine WORKDIR /app diff --git a/README.md b/README.md index 4e807f3..f7d9c43 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,12 @@ Port admin modules one by one with strict API/permission parity. See `docs/MIGRATION_MASTER_PLAN.md`. +## CI (Woodpecker) + +Required secrets: +- `REGISTRY_USERNAME` +- `REGISTRY_PASSWORD` + ## This project was created with the [Solid CLI](https://github.com/solidjs-community/solid-cli) ## Local Docker test (low RAM, no port conflict) diff --git a/admin-solid.dev.log b/admin-solid.dev.log new file mode 100644 index 0000000..3c65a07 --- /dev/null +++ b/admin-solid.dev.log @@ -0,0 +1,5 @@ + +> dev +> vinxi dev + +vinxi v0.5.11 diff --git a/admin-solid.dev.pid b/admin-solid.dev.pid new file mode 100644 index 0000000..0f03153 --- /dev/null +++ b/admin-solid.dev.pid @@ -0,0 +1 @@ +61044 diff --git a/admin-solid.start.log b/admin-solid.start.log new file mode 100644 index 0000000..225c074 --- /dev/null +++ b/admin-solid.start.log @@ -0,0 +1 @@ +Listening on http://[::]:3000 diff --git a/admin-solid.start.pid b/admin-solid.start.pid new file mode 100644 index 0000000..fcda9e9 --- /dev/null +++ b/admin-solid.start.pid @@ -0,0 +1 @@ +72260 diff --git a/admin.log b/admin.log index e18a1fd..4f776b1 100644 --- a/admin.log +++ b/admin.log @@ -9,3 +9,74 @@ vinxi starting dev server ➜ Local: http://localhost:3000/ ➜ Network: use --host to expose +1:30:54 PM [vite] (ssr) page reload vinxi/routes +1:30:54 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:30:54 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/employees/index.tsx?pick=default&pick=$css +1:31:04 PM [vite] (ssr) page reload vinxi/routes +1:31:04 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:31:04 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/employees/index.tsx?pick=default&pick=$css +1:31:15 PM [vite] (ssr) page reload vinxi/routes +1:31:15 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:31:16 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/employees/index.tsx?pick=default&pick=$css +1:31:47 PM [vite] (ssr) page reload vinxi/routes +1:31:47 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:31:47 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/employees/index.tsx?pick=default&pick=$css +1:32:06 PM [vite] (ssr) page reload vinxi/routes +1:32:06 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:32:06 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/employees/index.tsx?pick=default&pick=$css +1:32:13 PM [vite] (ssr) page reload vinxi/routes +1:32:13 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:32:13 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/employees/index.tsx?pick=default&pick=$css +1:39:55 PM [vite] (ssr) page reload vinxi/routes +1:39:55 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:39:55 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +1:40:16 PM [vite] (ssr) page reload vinxi/routes +1:40:16 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:40:16 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +1:42:29 PM [vite] (ssr) page reload vinxi/routes +1:42:29 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:42:29 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +1:43:02 PM [vite] (ssr) page reload vinxi/routes +1:43:02 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:43:02 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +1:43:06 PM [vite] (ssr) page reload vinxi/routes +1:43:06 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:43:06 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +1:46:00 PM [vite] (ssr) page reload vinxi/routes +1:46:00 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:46:00 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +1:47:24 PM [vite] (ssr) page reload vinxi/routes +1:47:24 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +1:47:24 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +3:43:28 PM [vite] (ssr) page reload vinxi/routes +3:43:28 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +3:43:28 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +3:43:29 PM [vite] (client) hmr invalidate /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +3:43:29 PM [vite] (client) page reload src/routes/admin/external-roles.tsx +3:49:14 PM [vite] (ssr) page reload vinxi/routes +3:49:14 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +3:49:14 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +3:50:11 PM [vite] (ssr) page reload vinxi/routes +3:50:11 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +3:50:11 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +3:50:36 PM [vite] (ssr) page reload vinxi/routes +3:50:36 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +3:50:36 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +5:15:08 PM [vite] (ssr) page reload vinxi/routes +5:15:08 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +5:15:09 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +5:15:14 PM [vite] (ssr) page reload vinxi/routes +5:15:14 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +5:15:15 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +5:15:21 PM [vite] (ssr) page reload vinxi/routes +5:15:21 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +5:15:21 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +5:15:38 PM [vite] (ssr) page reload vinxi/routes +5:15:38 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +5:15:38 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +5:31:17 PM [vite] (ssr) page reload vinxi/routes +5:31:17 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +5:31:17 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css +5:43:15 PM [vite] (ssr) page reload vinxi/routes +5:43:15 PM [vite] (client) hmr update /src/app.tsx, /src/app.css +5:43:15 PM [vite] (client) hmr update /@fs/Users/ashwin/workspace/nxtgauge-admin-solid/src/routes/admin/external-roles.tsx?pick=default&pick=$css diff --git a/package-lock.json b/package-lock.json index cedeb9f..ae56597 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,8 +7,8 @@ "name": "nxtgauge-admin-solid", "dependencies": { "@solidjs/meta": "^0.29.4", - "@solidjs/router": "^0.15.0", - "@solidjs/start": "^1.3.2", + "@solidjs/router": "^0.15.3", + "@solidjs/start": "^1.3.0", "@tailwindcss/vite": "^4.2.2", "@thisbeyond/solid-dnd": "^0.7.5", "apexcharts": "^5.10.4", @@ -2747,18 +2747,18 @@ } }, "node_modules/@solidjs/router": { - "version": "0.15.4", - "resolved": "https://registry.npmjs.org/@solidjs/router/-/router-0.15.4.tgz", - "integrity": "sha512-WOpgg9a9T638cR+5FGbFi/IV4l2FpmBs1GpIMSPa0Ce9vyJN7Wts+X2PqMf9IYn0zUj2MlSJtm1gp7/HI/n5TQ==", + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/@solidjs/router/-/router-0.15.3.tgz", + "integrity": "sha512-iEbW8UKok2Oio7o6Y4VTzLj+KFCmQPGEpm1fS3xixwFBdclFVBvaQVeibl1jys4cujfAK5Kn6+uG2uBm3lxOMw==", "license": "MIT", "peerDependencies": { "solid-js": "^1.8.6" } }, "node_modules/@solidjs/start": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@solidjs/start/-/start-1.3.2.tgz", - "integrity": "sha512-tasDl3utVbtP0rr4InB3ntBIFV2upvEiFrOOCkRrAA3yBfjx9elpxnc94sJQXo65PNYdAAAkPIC6h93vLrtwHg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@solidjs/start/-/start-1.3.0.tgz", + "integrity": "sha512-FMqc0ZaAUIFBVOEUV87Y1W6LuCN5OveOigXvjZ9CarB/TQSC3QqDBSX+EyWkvreGIU7zsEIi0mka6NGJgJ5oOQ==", "license": "MIT", "dependencies": { "@tanstack/server-functions-plugin": "1.121.21", diff --git a/package.json b/package.json index 551c054..13b0441 100644 --- a/package.json +++ b/package.json @@ -30,8 +30,8 @@ }, "dependencies": { "@solidjs/meta": "^0.29.4", - "@solidjs/router": "^0.15.0", - "@solidjs/start": "^1.3.2", + "@solidjs/router": "^0.15.3", + "@solidjs/start": "^1.3.0", "@tailwindcss/vite": "^4.2.2", "@thisbeyond/solid-dnd": "^0.7.5", "apexcharts": "^5.10.4", @@ -61,9 +61,9 @@ "pngjs": "^7.0.0", "storybook": "^10.3.3", "storybook-solidjs-vite": "^10.0.11", + "typescript": "^5.5.0", "visbug": "^0.1.14", - "vitest": "^4.1.1", "vite-plugin-solid": "^2.11.12", - "typescript": "^5.5.0" + "vitest": "^4.1.1" } } diff --git a/screenshot.ts b/screenshot.ts new file mode 100644 index 0000000..6d3fd6a --- /dev/null +++ b/screenshot.ts @@ -0,0 +1,35 @@ +import { chromium } from 'playwright'; + +async function takeNxtgaugeScreenshot() { + const browser = await chromium.launch({ headless: true }); + const page = await browser.newPage(); + page.setViewportSize({ width: 1440, height: 900 }); + + console.log('Navigating to nxtgauge admin...'); + await page.goto('http://localhost:3000/admin', { waitUntil: 'load' }); + await page.waitForTimeout(5000); + + // Take screenshot + console.log('Taking screenshot...'); + await page.screenshot({ path: '/tmp/nxtgauge-admin.png', fullPage: true }); + + // Get sidebar structure info + const sidebarInfo = await page.evaluate(() => { + const sidebar = document.querySelector('aside'); + if (sidebar) { + const styles = window.getComputedStyle(sidebar); + return { + width: styles.width, + background: styles.background, + borderRight: styles.borderRight, + }; + } + return 'not found'; + }); + console.log('Sidebar styles:', sidebarInfo); + + await browser.close(); + console.log('Screenshot saved'); +} + +takeNxtgaugeScreenshot().catch(console.error); diff --git a/src/app.tsx b/src/app.tsx index c2f2ea3..6395a3e 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -7,7 +7,7 @@ import "./app.css"; export default function App() { return ( ( + root={(props) => ( ADMIN PANEL | NXTGAUGE {props.children} diff --git a/src/components/AdminShell.tsx b/src/components/AdminShell.tsx index dd52e80..c270b78 100644 --- a/src/components/AdminShell.tsx +++ b/src/components/AdminShell.tsx @@ -1,172 +1,214 @@ -import { A, useLocation, useNavigate, useSearchParams } from '@solidjs/router'; +import { A, useLocation, useNavigate, useSearchParams } from "@solidjs/router"; import { - For, Show, createEffect, createMemo, createSignal, - onCleanup, onMount, type JSX, -} from 'solid-js'; -import { Bell, Moon, Search, Settings, Sun, User } from 'lucide-solid'; -import AdminSidebar from './AdminSidebar'; -import { isExternalIdentity } from '~/lib/admin-auth'; -import { clearAdminSession, hasAdminSession, setAdminSession } from '~/lib/admin-session'; -import { normalizeAllowedModules } from '~/lib/admin/module-access'; + For, + Show, + createEffect, + createMemo, + createSignal, + onCleanup, + onMount, + type JSX, +} from "solid-js"; +import { Bell, Moon, Search, Settings, Sun, User } from "lucide-solid"; +import AdminSidebar from "./AdminSidebar"; +import { isExternalIdentity } from "~/lib/admin-auth"; +import { clearAdminSession, hasAdminSession, setAdminSession } from "~/lib/admin-session"; +import { normalizeAllowedModules } from "~/lib/admin/module-access"; type Tab = { href: string; label: string; exact?: boolean }; type SearchResult = { id: string; title: string; subtitle: string; href: string }; type SearchGroup = { label: string; viewAllHref: string; results: SearchResult[] }; const PAGE_TITLES: Array<{ prefix: string; label: string; exact?: boolean }> = [ - { prefix: '/admin', label: 'Dashboard', exact: true }, - { prefix: '/admin/department', label: 'Department Management' }, - { prefix: '/admin/designation', label: 'Designation Management' }, - { prefix: '/admin/roles', label: 'Internal Role Management' }, - { prefix: '/admin/employees', label: 'Employee Management' }, - { prefix: '/admin/external-roles', label: 'External Role Management' }, - { prefix: '/admin/internal-dashboard-management', label: 'Internal Dashboard Management' }, - { prefix: '/admin/external-dashboard-management', label: 'External Dashboard Management' }, - { prefix: '/admin/role-ui-configs', label: 'External Dashboard Management' }, - { prefix: '/admin/verification', label: 'Verification Management' }, - { prefix: '/admin/verification-status', label: 'Verification Management' }, - { prefix: '/admin/approval', label: 'Approval Management' }, - { prefix: '/admin/approvals', label: 'Approval Management' }, - { prefix: '/admin/approval-management', label: 'Approval Management' }, - { prefix: '/admin/users', label: 'Users Management' }, - { prefix: '/admin/company', label: 'Company Management' }, - { prefix: '/admin/candidate', label: 'Candidate Management' }, - { prefix: '/admin/customer', label: 'Customer Management' }, - { prefix: '/admin/photographer', label: 'Photographer Management' }, - { prefix: '/admin/makeup-artist', label: 'Makeup Artist Management' }, - { prefix: '/admin/tutors', label: 'Tutors Management' }, - { prefix: '/admin/developers', label: 'Developers Management' }, - { prefix: '/admin/video-editors', label: 'Video Editor Management' }, - { prefix: '/admin/fitness-trainers', label: 'Fitness Trainer Management' }, - { prefix: '/admin/catering-services', label: 'Catering Services Management' }, - { prefix: '/admin/ugc-content-creators', label: 'UGC Content Creator Management' }, - { prefix: '/admin/graphic-designers', label: 'Graphic Designer Management' }, - { prefix: '/admin/social-media-managers', label: 'Social Media Manager Management' }, - { prefix: '/admin/jobs', label: 'Jobs Management' }, - { prefix: '/admin/leads', label: 'Leads Management' }, - { prefix: '/admin/applications', label: 'Applications Management' }, - { prefix: '/admin/responses', label: 'Responses Management' }, - { prefix: '/admin/pricing', label: 'Pricing Management' }, - { prefix: '/admin/credit', label: 'Credit Management' }, - { prefix: '/admin/coupon', label: 'Coupon Management' }, - { prefix: '/admin/discount', label: 'Discount Management' }, - { prefix: '/admin/tax', label: 'Tax Management' }, - { prefix: '/admin/order', label: 'Order Management' }, - { prefix: '/admin/invoice', label: 'Invoice Management' }, - { prefix: '/admin/payment-gateway', label: 'Payment Gateway Management' }, - { prefix: '/admin/smtp', label: 'SMTP Management' }, - { prefix: '/admin/kb', label: 'Knowledge Base Management' }, - { prefix: '/admin/notifications', label: 'Notifications' }, - { prefix: '/admin/review', label: 'Review Management' }, - { prefix: '/admin/support', label: 'Support Management' }, - { prefix: '/admin/report', label: 'Report Management' }, - { prefix: '/admin/ledger', label: 'Ledger Management' }, + { prefix: "/admin", label: "Dashboard", exact: true }, + { prefix: "/admin/department", label: "Department Management" }, + { prefix: "/admin/designation", label: "Designation Management" }, + { prefix: "/admin/roles", label: "Internal Role Management" }, + { prefix: "/admin/employees", label: "Employee Management" }, + { prefix: "/admin/external-roles", label: "External Role Management" }, + { prefix: "/admin/internal-dashboard-management", label: "Internal Dashboard Management" }, + { prefix: "/admin/external-dashboard-management", label: "External Dashboard Management" }, + { prefix: "/admin/role-ui-configs", label: "External Dashboard Management" }, + { prefix: "/admin/verification", label: "Verification Management" }, + { prefix: "/admin/verification-status", label: "Verification Management" }, + { prefix: "/admin/approval", label: "Approval Management" }, + { prefix: "/admin/approvals", label: "Approval Management" }, + { prefix: "/admin/approval-management", label: "Approval Management" }, + { prefix: "/admin/users", label: "Users Management" }, + { prefix: "/admin/company", label: "Company Management" }, + { prefix: "/admin/candidate", label: "Candidate Management" }, + { prefix: "/admin/customer", label: "Customer Management" }, + { prefix: "/admin/photographer", label: "Photographer Management" }, + { prefix: "/admin/makeup-artist", label: "Makeup Artist Management" }, + { prefix: "/admin/tutors", label: "Tutors Management" }, + { prefix: "/admin/developers", label: "Developers Management" }, + { prefix: "/admin/video-editors", label: "Video Editor Management" }, + { prefix: "/admin/fitness-trainers", label: "Fitness Trainer Management" }, + { prefix: "/admin/catering-services", label: "Catering Services Management" }, + { prefix: "/admin/ugc-content-creators", label: "UGC Content Creator Management" }, + { prefix: "/admin/graphic-designers", label: "Graphic Designer Management" }, + { prefix: "/admin/social-media-managers", label: "Social Media Manager Management" }, + { prefix: "/admin/jobs", label: "Jobs Management" }, + { prefix: "/admin/leads", label: "Leads Management" }, + { prefix: "/admin/applications", label: "Applications Management" }, + { prefix: "/admin/responses", label: "Responses Management" }, + { prefix: "/admin/pricing", label: "Pricing Management" }, + { prefix: "/admin/credit", label: "Credit Management" }, + { prefix: "/admin/coupon", label: "Coupon Management" }, + { prefix: "/admin/discount", label: "Discount Management" }, + { prefix: "/admin/tax", label: "Tax Management" }, + { prefix: "/admin/order", label: "Order Management" }, + { prefix: "/admin/invoice", label: "Invoice Management" }, + { prefix: "/admin/payment-gateway", label: "Payment Gateway Management" }, + { prefix: "/admin/smtp", label: "SMTP Management" }, + { prefix: "/admin/kb", label: "Knowledge Base Management" }, + { prefix: "/admin/notifications", label: "Notifications" }, + { prefix: "/admin/review", label: "Review Management" }, + { prefix: "/admin/support", label: "Support Management" }, + { prefix: "/admin/report", label: "Report Management" }, + { prefix: "/admin/ledger", label: "Ledger Management" }, ]; const TAB_SETS: Array<{ prefixes: string[]; tabs: Tab[] }> = []; const ROUTE_MODULE_KEYS: Array<{ prefix: string; keys: string[] }> = [ - { prefix: '/admin', keys: ['ADMIN_DASHBOARD', 'DASHBOARD'] }, - { prefix: '/admin/department', keys: ['DEPARTMENT_MANAGEMENT', 'DEPARTMENTS'] }, - { prefix: '/admin/department-management', keys: ['DEPARTMENT_MANAGEMENT', 'DEPARTMENTS'] }, - { prefix: '/admin/designation', keys: ['DESIGNATION_MANAGEMENT', 'DESIGNATIONS'] }, - { prefix: '/admin/designation-management', keys: ['DESIGNATION_MANAGEMENT', 'DESIGNATIONS'] }, - { prefix: '/admin/roles', keys: ['INTERNAL_ROLE_MANAGEMENT', 'ROLES'] }, - { prefix: '/admin/employees', keys: ['EMPLOYEE_MANAGEMENT', 'EMPLOYEES'] }, - { prefix: '/admin/external-roles', keys: ['EXTERNAL_ROLE_MANAGEMENT', 'EXTERNAL_ROLES'] }, - { prefix: '/admin/internal-dashboard-management', keys: ['INTERNAL_DASHBOARD_MANAGEMENT', 'INTERNAL_DASHBOARDS', 'INTERNAL_DASHBOARD_CONFIG'] }, - { prefix: '/admin/external-dashboard-management', keys: ['DASHBOARD_CONFIG_MANAGEMENT', 'EXTERNAL_DASHBOARD_MANAGEMENT', 'EXTERNAL_DASHBOARDS', 'EXTERNAL_DASHBOARD_CONFIG', 'RUNTIME_ROLES'] }, - { prefix: '/admin/role-ui-configs', keys: ['DASHBOARD_CONFIG_MANAGEMENT', 'EXTERNAL_DASHBOARD_MANAGEMENT', 'EXTERNAL_DASHBOARDS', 'EXTERNAL_DASHBOARD_CONFIG', 'RUNTIME_ROLES'] }, - { prefix: '/admin/verification', keys: ['VERIFICATION_MANAGEMENT', 'VERIFICATIONS'] }, - { prefix: '/admin/verification-status', keys: ['VERIFICATION_MANAGEMENT', 'VERIFICATIONS'] }, - { prefix: '/admin/approval', keys: ['APPROVAL_MANAGEMENT', 'APPROVALS'] }, - { prefix: '/admin/approvals', keys: ['APPROVAL_MANAGEMENT', 'APPROVALS'] }, - { prefix: '/admin/approval-management', keys: ['APPROVAL_MANAGEMENT', 'APPROVALS'] }, - { prefix: '/admin/users', keys: ['USER_MANAGEMENT', 'USERS'] }, - { prefix: '/admin/company', keys: ['COMPANY_MANAGEMENT', 'COMPANIES'] }, - { prefix: '/admin/candidate', keys: ['CANDIDATE_MANAGEMENT', 'CANDIDATES'] }, - { prefix: '/admin/customer', keys: ['CUSTOMER_MANAGEMENT', 'CUSTOMERS'] }, - { prefix: '/admin/photographer', keys: ['PHOTOGRAPHER_MANAGEMENT', 'PHOTOGRAPHERS'] }, - { prefix: '/admin/makeup-artist', keys: ['MAKEUP_ARTIST_MANAGEMENT', 'MAKEUP_ARTISTS'] }, - { prefix: '/admin/tutors', keys: ['TUTOR_MANAGEMENT', 'TUTORS'] }, - { prefix: '/admin/developers', keys: ['DEVELOPER_MANAGEMENT', 'DEVELOPERS'] }, - { prefix: '/admin/video-editors', keys: ['VIDEO_EDITOR_MANAGEMENT', 'VIDEO_EDITORS'] }, - { prefix: '/admin/fitness-trainers', keys: ['FITNESS_TRAINER_MANAGEMENT', 'FITNESS_TRAINERS'] }, - { prefix: '/admin/catering-services', keys: ['CATERING_SERVICES_MANAGEMENT', 'CATERING_SERVICES'] }, - { prefix: '/admin/ugc-content-creator', keys: ['UGC_CONTENT_CREATOR_MANAGEMENT', 'UGC_CONTENT_CREATOR'] }, - { prefix: '/admin/graphic-designers', keys: ['GRAPHIC_DESIGNER_MANAGEMENT', 'GRAPHIC_DESIGNERS'] }, - { prefix: '/admin/social-media-managers', keys: ['SOCIAL_MEDIA_MANAGEMENT', 'SOCIAL_MEDIA_MANAGER_MANAGEMENT', 'SOCIAL_MEDIA_MANAGERS'] }, - { prefix: '/admin/jobs', keys: ['JOBS_MANAGEMENT', 'JOBS'] }, - { prefix: '/admin/leads', keys: ['LEADS_MANAGEMENT', 'LEADS', 'REQUIREMENTS_MANAGEMENT', 'REQUIREMENTS'] }, - { prefix: '/admin/applications', keys: ['APPLICATIONS_MANAGEMENT', 'APPLICATIONS'] }, - { prefix: '/admin/responses', keys: ['RESPONSES_MANAGEMENT', 'RESPONSES'] }, - { prefix: '/admin/pricing', keys: ['PRICING_MANAGEMENT', 'PRICING'] }, - { prefix: '/admin/credit', keys: ['CREDIT_MANAGEMENT', 'CREDITS'] }, - { prefix: '/admin/coupon', keys: ['COUPON_MANAGEMENT', 'COUPONS'] }, - { prefix: '/admin/discount', keys: ['DISCOUNT_MANAGEMENT', 'DISCOUNTS'] }, - { prefix: '/admin/tax', keys: ['TAX_MANAGEMENT', 'TAXES'] }, - { prefix: '/admin/order', keys: ['ORDER_MANAGEMENT', 'ORDERS'] }, - { prefix: '/admin/invoice', keys: ['INVOICE_MANAGEMENT', 'INVOICES'] }, - { prefix: '/admin/payment-gateway', keys: ['PAYMENT_GATEWAY_MANAGEMENT', 'PAYMENT_GATEWAY'] }, - { prefix: '/admin/smtp', keys: ['SMTP_MANAGEMENT', 'SMTP'] }, - { prefix: '/admin/kb', keys: ['KNOWLEDGE_BASE_MANAGEMENT', 'KNOWLEDGE_BASE', 'KB'] }, - { prefix: '/admin/notifications', keys: ['NOTIFICATIONS_MANAGEMENT', 'NOTIFICATIONS'] }, - { prefix: '/admin/review', keys: ['REVIEW_MANAGEMENT', 'REVIEWS'] }, - { prefix: '/admin/support', keys: ['SUPPORT_MANAGEMENT', 'SUPPORT'] }, - { prefix: '/admin/report', keys: ['REPORT_MANAGEMENT', 'REPORTS'] }, - { prefix: '/admin/ledger', keys: ['LEDGER', 'LEDGER_MANAGEMENT'] }, + { prefix: "/admin", keys: ["ADMIN_DASHBOARD", "DASHBOARD"] }, + { prefix: "/admin/department", keys: ["DEPARTMENT_MANAGEMENT", "DEPARTMENTS"] }, + { prefix: "/admin/department-management", keys: ["DEPARTMENT_MANAGEMENT", "DEPARTMENTS"] }, + { prefix: "/admin/designation", keys: ["DESIGNATION_MANAGEMENT", "DESIGNATIONS"] }, + { prefix: "/admin/designation-management", keys: ["DESIGNATION_MANAGEMENT", "DESIGNATIONS"] }, + { prefix: "/admin/roles", keys: ["INTERNAL_ROLE_MANAGEMENT", "ROLES"] }, + { prefix: "/admin/employees", keys: ["EMPLOYEE_MANAGEMENT", "EMPLOYEES"] }, + { prefix: "/admin/external-roles", keys: ["EXTERNAL_ROLE_MANAGEMENT", "EXTERNAL_ROLES"] }, + { + prefix: "/admin/internal-dashboard-management", + keys: ["INTERNAL_DASHBOARD_MANAGEMENT", "INTERNAL_DASHBOARDS", "INTERNAL_DASHBOARD_CONFIG"], + }, + { + prefix: "/admin/external-dashboard-management", + keys: [ + "DASHBOARD_CONFIG_MANAGEMENT", + "EXTERNAL_DASHBOARD_MANAGEMENT", + "EXTERNAL_DASHBOARDS", + "EXTERNAL_DASHBOARD_CONFIG", + "RUNTIME_ROLES", + ], + }, + { + prefix: "/admin/role-ui-configs", + keys: [ + "DASHBOARD_CONFIG_MANAGEMENT", + "EXTERNAL_DASHBOARD_MANAGEMENT", + "EXTERNAL_DASHBOARDS", + "EXTERNAL_DASHBOARD_CONFIG", + "RUNTIME_ROLES", + ], + }, + { prefix: "/admin/verification", keys: ["VERIFICATION_MANAGEMENT", "VERIFICATIONS"] }, + { prefix: "/admin/verification-status", keys: ["VERIFICATION_MANAGEMENT", "VERIFICATIONS"] }, + { prefix: "/admin/approval", keys: ["APPROVAL_MANAGEMENT", "APPROVALS"] }, + { prefix: "/admin/approvals", keys: ["APPROVAL_MANAGEMENT", "APPROVALS"] }, + { prefix: "/admin/approval-management", keys: ["APPROVAL_MANAGEMENT", "APPROVALS"] }, + { prefix: "/admin/users", keys: ["USER_MANAGEMENT", "USERS"] }, + { prefix: "/admin/company", keys: ["COMPANY_MANAGEMENT", "COMPANIES"] }, + { prefix: "/admin/candidate", keys: ["CANDIDATE_MANAGEMENT", "CANDIDATES"] }, + { prefix: "/admin/customer", keys: ["CUSTOMER_MANAGEMENT", "CUSTOMERS"] }, + { prefix: "/admin/photographer", keys: ["PHOTOGRAPHER_MANAGEMENT", "PHOTOGRAPHERS"] }, + { prefix: "/admin/makeup-artist", keys: ["MAKEUP_ARTIST_MANAGEMENT", "MAKEUP_ARTISTS"] }, + { prefix: "/admin/tutors", keys: ["TUTOR_MANAGEMENT", "TUTORS"] }, + { prefix: "/admin/developers", keys: ["DEVELOPER_MANAGEMENT", "DEVELOPERS"] }, + { prefix: "/admin/video-editors", keys: ["VIDEO_EDITOR_MANAGEMENT", "VIDEO_EDITORS"] }, + { prefix: "/admin/fitness-trainers", keys: ["FITNESS_TRAINER_MANAGEMENT", "FITNESS_TRAINERS"] }, + { + prefix: "/admin/catering-services", + keys: ["CATERING_SERVICES_MANAGEMENT", "CATERING_SERVICES"], + }, + { + prefix: "/admin/ugc-content-creator", + keys: ["UGC_CONTENT_CREATOR_MANAGEMENT", "UGC_CONTENT_CREATOR"], + }, + { + prefix: "/admin/graphic-designers", + keys: ["GRAPHIC_DESIGNER_MANAGEMENT", "GRAPHIC_DESIGNERS"], + }, + { + prefix: "/admin/social-media-managers", + keys: ["SOCIAL_MEDIA_MANAGEMENT", "SOCIAL_MEDIA_MANAGER_MANAGEMENT", "SOCIAL_MEDIA_MANAGERS"], + }, + { prefix: "/admin/jobs", keys: ["JOBS_MANAGEMENT", "JOBS"] }, + { + prefix: "/admin/leads", + keys: ["LEADS_MANAGEMENT", "LEADS", "REQUIREMENTS_MANAGEMENT", "REQUIREMENTS"], + }, + { prefix: "/admin/applications", keys: ["APPLICATIONS_MANAGEMENT", "APPLICATIONS"] }, + { prefix: "/admin/responses", keys: ["RESPONSES_MANAGEMENT", "RESPONSES"] }, + { prefix: "/admin/pricing", keys: ["PRICING_MANAGEMENT", "PRICING"] }, + { prefix: "/admin/credit", keys: ["CREDIT_MANAGEMENT", "CREDITS"] }, + { prefix: "/admin/coupon", keys: ["COUPON_MANAGEMENT", "COUPONS"] }, + { prefix: "/admin/discount", keys: ["DISCOUNT_MANAGEMENT", "DISCOUNTS"] }, + { prefix: "/admin/tax", keys: ["TAX_MANAGEMENT", "TAXES"] }, + { prefix: "/admin/order", keys: ["ORDER_MANAGEMENT", "ORDERS"] }, + { prefix: "/admin/invoice", keys: ["INVOICE_MANAGEMENT", "INVOICES"] }, + { prefix: "/admin/payment-gateway", keys: ["PAYMENT_GATEWAY_MANAGEMENT", "PAYMENT_GATEWAY"] }, + { prefix: "/admin/smtp", keys: ["SMTP_MANAGEMENT", "SMTP"] }, + { prefix: "/admin/kb", keys: ["KNOWLEDGE_BASE_MANAGEMENT", "KNOWLEDGE_BASE", "KB"] }, + { prefix: "/admin/notifications", keys: ["NOTIFICATIONS_MANAGEMENT", "NOTIFICATIONS"] }, + { prefix: "/admin/review", keys: ["REVIEW_MANAGEMENT", "REVIEWS"] }, + { prefix: "/admin/support", keys: ["SUPPORT_MANAGEMENT", "SUPPORT"] }, + { prefix: "/admin/report", keys: ["REPORT_MANAGEMENT", "REPORTS"] }, + { prefix: "/admin/ledger", keys: ["LEDGER", "LEDGER_MANAGEMENT"] }, ]; const SEARCH_MODULES = [ { - label: 'Users', - viewAllHref: '/admin/users', - api: '/api/admin/users', - listKeys: ['users', 'items'], - titleKeys: ['full_name', 'name'], - subtitleKeys: ['email', 'phone'], - detailBase: '/admin/users', + label: "Users", + viewAllHref: "/admin/users", + api: "/api/admin/users", + listKeys: ["users", "items"], + titleKeys: ["full_name", "name"], + subtitleKeys: ["email", "phone"], + detailBase: "/admin/users", }, { - label: 'Companies', - viewAllHref: '/admin/company', - api: '/api/admin/companies', - listKeys: ['companies', 'items'], - titleKeys: ['name', 'companyName'], - subtitleKeys: ['email', 'phone'], - detailBase: '/admin/company', + label: "Companies", + viewAllHref: "/admin/company", + api: "/api/admin/companies", + listKeys: ["companies", "items"], + titleKeys: ["name", "companyName"], + subtitleKeys: ["email", "phone"], + detailBase: "/admin/company", }, { - label: 'Employees', - viewAllHref: '/admin/employees', - api: '/api/admin/employees', - listKeys: ['employees', 'items'], - titleKeys: ['full_name', 'name'], - subtitleKeys: ['email', 'department_name'], - detailBase: '/admin/employees', + label: "Employees", + viewAllHref: "/admin/employees", + api: "/api/admin/employees", + listKeys: ["employees", "items"], + titleKeys: ["full_name", "name"], + subtitleKeys: ["email", "department_name"], + detailBase: "/admin/employees", }, { - label: 'Jobs', - viewAllHref: '/admin/jobs', - api: '/api/admin/jobs', - listKeys: ['jobs', 'items'], - titleKeys: ['title', 'name'], - subtitleKeys: ['status', 'company_name'], - detailBase: '/admin/jobs', + label: "Jobs", + viewAllHref: "/admin/jobs", + api: "/api/admin/jobs", + listKeys: ["jobs", "items"], + titleKeys: ["title", "name"], + subtitleKeys: ["status", "company_name"], + detailBase: "/admin/jobs", }, { - label: 'Leads', - viewAllHref: '/admin/leads', - api: '/api/admin/leads', - listKeys: ['leads', 'items'], - titleKeys: ['name', 'full_name'], - subtitleKeys: ['email', 'status'], - detailBase: '/admin/leads', + label: "Leads", + viewAllHref: "/admin/leads", + api: "/api/admin/leads", + listKeys: ["leads", "items"], + titleKeys: ["name", "full_name"], + subtitleKeys: ["email", "status"], + detailBase: "/admin/leads", }, ]; function pickStr(obj: Record, keys: string[]): string { for (const k of keys) if (obj[k]) return String(obj[k]); - return '—'; + return "—"; } function extractList(data: any, keys: string[]): any[] { @@ -176,7 +218,7 @@ function extractList(data: any, keys: string[]): any[] { } function GlobalSearch() { - const [query, setQuery] = createSignal(''); + const [query, setQuery] = createSignal(""); const [open, setOpen] = createSignal(false); const [groups, setGroups] = createSignal([]); const [searching, setSearching] = createSignal(false); @@ -185,11 +227,17 @@ function GlobalSearch() { const doSearch = async (q: string) => { const trimmed = q.trim(); - if (trimmed.length < 2) { setGroups([]); setOpen(false); return; } + if (trimmed.length < 2) { + setGroups([]); + setOpen(false); + return; + } setSearching(true); const settled = await Promise.allSettled( SEARCH_MODULES.map(async (mod) => { - const res = await fetch(`${mod.api}?search=${encodeURIComponent(trimmed)}&limit=4`).catch(() => null); + const res = await fetch(`${mod.api}?search=${encodeURIComponent(trimmed)}&limit=4`).catch( + () => null + ); if (!res?.ok) return null; const data = await res.json().catch(() => null); if (!data) return null; @@ -205,9 +253,9 @@ function GlobalSearch() { href: `${mod.detailBase}/${item.id}`, })), } satisfies SearchGroup; - }), + }) ); - setGroups(settled.flatMap((r) => (r.status === 'fulfilled' && r.value ? [r.value] : []))); + setGroups(settled.flatMap((r) => (r.status === "fulfilled" && r.value ? [r.value] : []))); setOpen(true); setSearching(false); }; @@ -215,26 +263,39 @@ function GlobalSearch() { const handleInput = (val: string) => { setQuery(val); clearTimeout(timer); - if (val.trim().length < 2) { setGroups([]); setOpen(false); return; } + if (val.trim().length < 2) { + setGroups([]); + setOpen(false); + return; + } timer = setTimeout(() => doSearch(val), 350); }; - const close = () => { setOpen(false); setQuery(''); setGroups([]); }; - const onOutside = (e: MouseEvent) => { if (!wrapRef.contains(e.target as Node)) setOpen(false); }; + const close = () => { + setOpen(false); + setQuery(""); + setGroups([]); + }; + const onOutside = (e: MouseEvent) => { + if (!wrapRef.contains(e.target as Node)) setOpen(false); + }; - onMount(() => document.addEventListener('mousedown', onOutside)); - onCleanup(() => document.removeEventListener('mousedown', onOutside)); + onMount(() => document.addEventListener("mousedown", onOutside)); + onCleanup(() => document.removeEventListener("mousedown", onOutside)); return (
- + handleInput(e.currentTarget.value)} onFocus={() => groups().length > 0 && setOpen(true)} - onKeyDown={(e) => e.key === 'Escape' && close()} + onKeyDown={(e) => e.key === "Escape" && close()} class="h-[68px] w-full rounded-[24px] border-2 border-transparent bg-[#f4f5f8] pl-[60px] pr-6 text-[16px] text-[#0D0D2A] placeholder:text-[rgba(13,13,42,0.4)] outline-none transition-all focus:border-[#e5e7eb] focus:bg-white" /> @@ -244,19 +305,35 @@ function GlobalSearch() { {(group) => (
- {group.label} - View all + + {group.label} + + + View all +
{(item) => ( - +
{item.title.trim().slice(0, 1).toUpperCase()}
-

{item.title}

-

{item.subtitle}

+

+ {item.title} +

+

+ {item.subtitle} +

)} @@ -281,20 +358,27 @@ function ShowTabs(props: { tabs: Tab[]; isTabActive: (tab: Tab) => boolean; setTabsTrackEl: (el: HTMLDivElement) => void; - setTabRefs: (fn: (prev: Record) => Record) => void; + setTabRefs: ( + fn: (prev: Record) => Record + ) => void; tabIndicator: () => { left: number; width: number; ready: boolean }; }) { if (props.tabs.length === 0) return null; return ( -
+
{(tab) => ( props.setTabRefs((prev) => ({ ...prev, [tab.href]: el }))} - aria-current={props.isTabActive(tab) ? 'page' : undefined} + aria-current={props.isTabActive(tab) ? "page" : undefined} class={`px-4 pb-3 pt-3 text-[14px] font-semibold transition-colors ${ - props.isTabActive(tab) ? 'text-[#FF5E13]' : 'text-[rgba(13,13,42,0.6)] hover:text-[#0D0D2A]' + props.isTabActive(tab) + ? "text-[#FF5E13]" + : "text-[rgba(13,13,42,0.6)] hover:text-[#0D0D2A]" }`} > {tab.label} @@ -302,7 +386,7 @@ function ShowTabs(props: { )}
@@ -314,14 +398,14 @@ export default function AdminShell(props: { children: JSX.Element }) { const navigate = useNavigate(); const [searchParams] = useSearchParams(); - const [checkedSession, setCheckedSession] = createSignal(false); - const [adminName, setAdminName] = createSignal('Admin User'); + const [checkedSession, setCheckedSession] = createSignal(true); + const [adminName, setAdminName] = createSignal("Admin User"); const [allowedModules, setAllowedModules] = createSignal(null); const [isSuperAdmin, setIsSuperAdmin] = createSignal(false); const [sidebarOpen, setSidebarOpen] = createSignal(false); const [sidebarCollapsed, setSidebarCollapsed] = createSignal(false); const [unreadCount, setUnreadCount] = createSignal(0); - const [theme, setTheme] = createSignal<'light' | 'dark'>('light'); + const [theme, setTheme] = createSignal<"light" | "dark">("light"); const [routeTransitioning, setRouteTransitioning] = createSignal(false); const [tabsTrackEl, setTabsTrackEl] = createSignal(); @@ -331,25 +415,26 @@ export default function AdminShell(props: { children: JSX.Element }) { const logout = async () => { try { - const accessToken = typeof sessionStorage !== 'undefined' - ? sessionStorage.getItem('nxtgauge_admin_access_token') || '' - : ''; - await fetch('/api/auth/logout', { - method: 'POST', + const accessToken = + typeof sessionStorage !== "undefined" + ? sessionStorage.getItem("nxtgauge_admin_access_token") || "" + : ""; + await fetch("/api/auth/logout", { + method: "POST", headers: { - Accept: 'application/json', - 'x-portal-target': 'admin', + Accept: "application/json", + "x-portal-target": "admin", ...(accessToken ? { Authorization: `Bearer ${accessToken}` } : {}), }, - credentials: 'include', + credentials: "include", }).catch(() => null); } finally { - if (typeof sessionStorage !== 'undefined') { - sessionStorage.removeItem('nxtgauge_admin_access_token'); - sessionStorage.removeItem('nxtgauge_admin_preview'); + if (typeof sessionStorage !== "undefined") { + sessionStorage.removeItem("nxtgauge_admin_access_token"); + sessionStorage.removeItem("nxtgauge_admin_preview"); } clearAdminSession(); - navigate('/login', { replace: true }); + navigate("/login", { replace: true }); } }; @@ -369,7 +454,10 @@ export default function AdminShell(props: { children: JSX.Element }) { const refreshTabIndicator = () => { const activeTab = tabs().find((tab) => isTabActive(tab)); const track = tabsTrackEl(); - if (!activeTab || !track) { setTabIndicator((p) => ({ ...p, ready: false })); return; } + if (!activeTab || !track) { + setTabIndicator((p) => ({ ...p, ready: false })); + return; + } const el = tabRefs()[activeTab.href]; if (!el) return; setTabIndicator({ left: el.offsetLeft, width: el.offsetWidth, ready: true }); @@ -383,56 +471,47 @@ export default function AdminShell(props: { children: JSX.Element }) { createEffect(() => { location.pathname; - setRouteTransitioning(true); - requestAnimationFrame(() => { - requestAnimationFrame(() => setRouteTransitioning(false)); - }); - - if (!contentScrollRef) return; - const prefersReducedMotion = typeof window !== 'undefined' - ? window.matchMedia('(prefers-reduced-motion: reduce)').matches - : false; - contentScrollRef.scrollTo({ - top: 0, - behavior: prefersReducedMotion ? 'auto' : 'smooth', - }); + if (contentScrollRef) { + contentScrollRef.scrollTop = 0; + } }); onMount(() => { - const savedTheme = (typeof localStorage !== 'undefined' - ? localStorage.getItem('nxtgauge_admin_theme') - : null) as 'light' | 'dark' | null; - const nextTheme = savedTheme === 'dark' ? 'dark' : 'light'; + const savedTheme = ( + typeof localStorage !== "undefined" ? localStorage.getItem("nxtgauge_admin_theme") : null + ) as "light" | "dark" | null; + const nextTheme = savedTheme === "dark" ? "dark" : "light"; setTheme(nextTheme); - if (typeof document !== 'undefined') { - document.documentElement.setAttribute('data-theme', nextTheme); + if (typeof document !== "undefined") { + document.documentElement.setAttribute("data-theme", nextTheme); } - window.addEventListener('resize', refreshTabIndicator); - onCleanup(() => window.removeEventListener('resize', refreshTabIndicator)); + window.addEventListener("resize", refreshTabIndicator); + onCleanup(() => window.removeEventListener("resize", refreshTabIndicator)); // Fetch unread notification count and poll every 30 seconds const fetchUnreadCount = async () => { try { - const accessToken = typeof sessionStorage !== 'undefined' - ? sessionStorage.getItem('nxtgauge_admin_access_token') || '' - : ''; + const accessToken = + typeof sessionStorage !== "undefined" + ? sessionStorage.getItem("nxtgauge_admin_access_token") || "" + : ""; if (!accessToken) return; - const res = await fetch('/api/me/notifications/unread-count', { - method: 'GET', + const res = await fetch("/api/me/notifications/unread-count", { + method: "GET", headers: { - Accept: 'application/json', - 'x-portal-target': 'admin', + Accept: "application/json", + "x-portal-target": "admin", ...(accessToken ? { Authorization: `Bearer ${accessToken}` } : {}), }, - credentials: 'include', + credentials: "include", }); if (res.ok) { const data = await res.json(); setUnreadCount(data.unread_count || 0); } } catch (e) { - console.error('Failed to fetch unread count:', e); + console.error("Failed to fetch unread count:", e); } }; @@ -440,11 +519,14 @@ export default function AdminShell(props: { children: JSX.Element }) { const interval = setInterval(fetchUnreadCount, 30000); onCleanup(() => clearInterval(interval)); - const isPreview = searchParams._preview === '1' || - (typeof sessionStorage !== 'undefined' && sessionStorage.getItem('nxtgauge_admin_preview') === '1'); + const isPreview = + searchParams._preview === "1" || + (typeof sessionStorage !== "undefined" && + sessionStorage.getItem("nxtgauge_admin_preview") === "1"); if (isPreview) { - if (typeof sessionStorage !== 'undefined') sessionStorage.setItem('nxtgauge_admin_preview', '1'); + if (typeof sessionStorage !== "undefined") + sessionStorage.setItem("nxtgauge_admin_preview", "1"); setAdminSession(); setCheckedSession(true); return; @@ -452,52 +534,57 @@ export default function AdminShell(props: { children: JSX.Element }) { const verify = async () => { if (!hasAdminSession()) { - navigate(`/login?from=${encodeURIComponent(location.pathname + location.search)}`, { replace: true }); + navigate(`/login?from=${encodeURIComponent(location.pathname + location.search)}`, { + replace: true, + }); return; } try { - const accessToken = typeof sessionStorage !== 'undefined' - ? sessionStorage.getItem('nxtgauge_admin_access_token') || '' - : ''; - const response = await fetch('/api/auth/session', { - method: 'GET', + const accessToken = + typeof sessionStorage !== "undefined" + ? sessionStorage.getItem("nxtgauge_admin_access_token") || "" + : ""; + const response = await fetch("/api/auth/session", { + method: "GET", headers: { - Accept: 'application/json', - 'x-portal-target': 'admin', + Accept: "application/json", + "x-portal-target": "admin", ...(accessToken ? { Authorization: `Bearer ${accessToken}` } : {}), }, - credentials: 'include', + credentials: "include", }); const payload = await response.json().catch(() => ({})); - if (!response.ok || isExternalIdentity(payload)) throw new Error('Unauthorized'); + if (!response.ok || isExternalIdentity(payload)) throw new Error("Unauthorized"); if (payload?.full_name) setAdminName(payload.full_name); const roleKey = String( - payload?.active_role - || payload?.role - || payload?.user?.active_role - || payload?.user?.active_role_key - || payload?.user?.role - || payload?.user?.role_key - || '', + payload?.active_role || + payload?.role || + payload?.user?.active_role || + payload?.user?.active_role_key || + payload?.user?.role || + payload?.user?.role_key || + "" ).toUpperCase(); - setIsSuperAdmin(roleKey === 'SUPER_ADMIN'); + setIsSuperAdmin(roleKey === "SUPER_ADMIN"); try { - const res = await fetch('/api/runtime-config', { - method: 'GET', + const res = await fetch("/api/runtime-config", { + method: "GET", headers: { - Accept: 'application/json', - 'x-portal-target': 'admin', + Accept: "application/json", + "x-portal-target": "admin", ...(accessToken ? { Authorization: `Bearer ${accessToken}` } : {}), }, - credentials: 'include', + credentials: "include", }); const runtime = await res.json().catch(() => ({})); if (res.ok) { setAllowedModules(normalizeAllowedModules(runtime)); - const activeRole = String(runtime?.active_role || runtime?.user?.active_role || roleKey || '').toUpperCase(); - if (activeRole) setIsSuperAdmin(activeRole === 'SUPER_ADMIN'); + const activeRole = String( + runtime?.active_role || runtime?.user?.active_role || roleKey || "" + ).toUpperCase(); + if (activeRole) setIsSuperAdmin(activeRole === "SUPER_ADMIN"); } else { setAllowedModules(null); } @@ -508,7 +595,9 @@ export default function AdminShell(props: { children: JSX.Element }) { setCheckedSession(true); } catch { clearAdminSession(); - navigate(`/login?from=${encodeURIComponent(location.pathname + location.search)}`, { replace: true }); + navigate(`/login?from=${encodeURIComponent(location.pathname + location.search)}`, { + replace: true, + }); } }; @@ -518,29 +607,36 @@ export default function AdminShell(props: { children: JSX.Element }) { const pageTitle = createMemo(() => { const path = location.pathname; for (const entry of PAGE_TITLES) { - if (entry.exact ? path === entry.prefix : (path === entry.prefix || path.startsWith(`${entry.prefix}/`))) { + if ( + entry.exact + ? path === entry.prefix + : path === entry.prefix || path.startsWith(`${entry.prefix}/`) + ) { return entry.label; } } - return 'Admin'; + return "Admin"; }); const adminInitials = createMemo(() => { - if (adminName().trim().toLowerCase() === 'admin user') return 'AD'; - const parts = adminName().split(' ').map((s) => s.trim()).filter(Boolean); - if (parts.length === 0) return 'U'; + if (adminName().trim().toLowerCase() === "admin user") return "AD"; + const parts = adminName() + .split(" ") + .map((s) => s.trim()) + .filter(Boolean); + if (parts.length === 0) return "U"; if (parts.length === 1) return parts[0].slice(0, 2).toUpperCase(); return `${parts[0][0]}${parts[1][0]}`.toUpperCase(); }); createEffect(() => { const t = theme(); - if (typeof localStorage !== 'undefined') localStorage.setItem('nxtgauge_admin_theme', t); - if (typeof document !== 'undefined') document.documentElement.setAttribute('data-theme', t); + if (typeof localStorage !== "undefined") localStorage.setItem("nxtgauge_admin_theme", t); + if (typeof document !== "undefined") document.documentElement.setAttribute("data-theme", t); }); - const toggleTheme = () => setTheme((v) => (v === 'dark' ? 'light' : 'dark')); - const isDark = () => theme() === 'dark'; + const toggleTheme = () => setTheme((v) => (v === "dark" ? "light" : "dark")); + const isDark = () => theme() === "dark"; createEffect(() => { if (!checkedSession()) return; @@ -550,29 +646,53 @@ export default function AdminShell(props: { children: JSX.Element }) { if (!modules || modules.length === 0) return; const path = location.pathname; - if (path === '/admin') return; + if (path === "/admin") return; const matches = ROUTE_MODULE_KEYS.filter( - (entry) => path === entry.prefix || path.startsWith(`${entry.prefix}/`), + (entry) => path === entry.prefix || path.startsWith(`${entry.prefix}/`) ); const guard = matches.sort((a, b) => b.prefix.length - a.prefix.length)[0]; if (!guard) return; - const allowed = new Set(modules.map((m) => String(m || '').trim().toUpperCase()).filter(Boolean)); + const allowed = new Set( + modules + .map((m) => + String(m || "") + .trim() + .toUpperCase() + ) + .filter(Boolean) + ); const ok = guard.keys.some((k) => allowed.has(String(k).toUpperCase())); if (ok) return; - navigate(`/admin?denied=${encodeURIComponent(guard.keys[0])}&from=${encodeURIComponent(path)}`, { replace: true }); + navigate( + `/admin?denied=${encodeURIComponent(guard.keys[0])}&from=${encodeURIComponent(path)}`, + { replace: true } + ); }); return ( -
+
Checking session…
} + fallback={ +
+ Checking session… +
+ } >
-
setSidebarOpen(false)} /> +
setSidebarOpen(false)} + />
-
+
- - - + -
+
@@ -631,18 +778,20 @@ export default function AdminShell(props: { children: JSX.Element }) {
{ contentScrollRef = el; }} + ref={(el) => { + contentScrollRef = el; + }} class="min-h-0 flex-1 overflow-y-scroll" - style={{ background: isDark() ? '#0B1220' : '#F9FAFB', 'scrollbar-gutter': 'stable' }} + style={{ background: isDark() ? "#0B1220" : "#F9FAFB", "scrollbar-gutter": "stable" }} >
{props.children} diff --git a/src/components/admin/DashboardDesignPreview.tsx b/src/components/admin/DashboardDesignPreview.tsx index 5c9f8de..b1e2760 100644 --- a/src/components/admin/DashboardDesignPreview.tsx +++ b/src/components/admin/DashboardDesignPreview.tsx @@ -52,6 +52,21 @@ function titleCase(value: string) { const ORANGE_ICON_FILTER = 'invert(51%) sepia(86%) saturate(2445%) hue-rotate(353deg) brightness(101%) contrast(103%)'; +const PKG_CARD = { + WHITE: "#ffffff", + COIN_BG: "#FFFBF8", + COIN_AVATAR_BG: "linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%)", + BEST_VALUE_BG: "linear-gradient(135deg, #FF5E13 0%, #FF8A5C 100%)", + BORDER_DEFAULT: "#E5E7EB", + TEXT_SECONDARY: "#6B7280", + TEXT_PRIMARY: "#111827", + TEXT_ACCENT: "#FF5E13", + TEXT_MUTED: "#9CA3AF", + TEXT_SUCCESS: "#16A34A", + SHADOW_DEFAULT: "0 1px 3px rgba(0, 0, 0, 0.08)", + SHADOW_ACCENT: "0 4px 20px rgba(255, 94, 19, 0.15)", +} as const; + function StatusBadge(props: { status: 'ACTIVE' | 'INACTIVE' }) { const active = () => props.status === 'ACTIVE'; return ( @@ -560,8 +575,6 @@ function portfolioMediaConfig(roleKey: string): { || normalized === 'GRAPHIC_DESIGNER' || normalized === 'SOCIAL_MEDIA_MANAGER' || normalized === 'CATERING_SERVICES' - || normalized === 'DEVELOPER' - || normalized === 'FITNESS_TRAINER' ) { return { mode: 'visual', @@ -587,7 +600,13 @@ function customerViewFor(sidebar: string, roleKey: string): CustomerView { const key = String(sidebar || '').toLowerCase().trim(); const role = normalizeRoleKey(roleKey); const isProfessionalRole = role !== 'COMPANY' && role !== 'CUSTOMER'; - if (key === 'my dashboard') return { title: 'Service Seeker Dashboard Overview', subtitle: 'Manage your requirements and track professional responses in real-time.', tabs: ['overview', 'recent requirements', 'quick actions'], cta: 'Post New Requirement' }; + if (key === 'my dashboard') { + if (role === 'COMPANY') return { title: 'Company Dashboard Overview', subtitle: 'Manage your job postings, applications, and candidate interactions in one place.', tabs: ['overview', 'recent posts', 'quick actions'], cta: 'Post New Job' }; + if (role === 'CUSTOMER') return { title: 'Service Seeker Dashboard Overview', subtitle: 'Manage your requirements and track professional responses in real-time.', tabs: ['overview', 'recent requirements', 'quick actions'], cta: 'Post New Requirement' }; + if (role === 'JOB_SEEKER') return { title: 'Job Seeker Dashboard Overview', subtitle: 'Track your applications, saved jobs, and opportunities.', tabs: ['overview', 'recent applications', 'quick actions'], cta: 'Browse Jobs' }; + const spec = portfolioSpecForRole(roleKey); + return { title: `${spec.roleLabel} Dashboard Overview`, subtitle: 'Manage your profile, portfolio, leads, and professional opportunities.', tabs: ['overview', 'recent activity', 'quick actions'], cta: 'View Leads' }; + } if (key === 'leads') return { title: 'Leads', subtitle: 'Browse marketplace requirements and request contact access for current opportunities.', tabs: [], cta: 'Buy Credits' }; if (key === 'jobs') { if (role === 'JOB_SEEKER') return { title: 'Jobs', subtitle: 'Scroll through approved jobs, filter opportunities, and apply with your job seeker profile.', tabs: ['all jobs', 'recommended', 'saved', 'applied', 'expiring soon'], cta: 'Post A Resume' }; @@ -1049,7 +1068,26 @@ export default function DashboardDesignPreview(props: { roleKey?: string; exploreRoles?: Array<{ key: string; name: string }>; onOpenFullscreen?: () => void; + dashboardConfig?: Record; }) { + const pkgCardTheme = () => { + const cfg = props.dashboardConfig; + return { + WHITE: cfg?.pkg_card?.white ?? PKG_CARD.WHITE, + COIN_BG: cfg?.pkg_card?.coin_bg ?? PKG_CARD.COIN_BG, + COIN_AVATAR_BG: cfg?.pkg_card?.coin_avatar_bg ?? PKG_CARD.COIN_AVATAR_BG, + BEST_VALUE_BG: cfg?.pkg_card?.best_value_bg ?? PKG_CARD.BEST_VALUE_BG, + BORDER_DEFAULT: cfg?.pkg_card?.border_default ?? PKG_CARD.BORDER_DEFAULT, + TEXT_SECONDARY: cfg?.pkg_card?.text_secondary ?? PKG_CARD.TEXT_SECONDARY, + TEXT_PRIMARY: cfg?.pkg_card?.text_primary ?? PKG_CARD.TEXT_PRIMARY, + TEXT_ACCENT: cfg?.pkg_card?.text_accent ?? PKG_CARD.TEXT_ACCENT, + TEXT_MUTED: cfg?.pkg_card?.text_muted ?? PKG_CARD.TEXT_MUTED, + TEXT_SUCCESS: cfg?.pkg_card?.text_success ?? PKG_CARD.TEXT_SUCCESS, + SHADOW_DEFAULT: cfg?.pkg_card?.shadow_default ?? PKG_CARD.SHADOW_DEFAULT, + SHADOW_ACCENT: cfg?.pkg_card?.shadow_accent ?? PKG_CARD.SHADOW_ACCENT, + }; + }; + const isProfessionalRoleKey = (roleKey: string) => { const role = normalizeRoleKey(roleKey); return role !== 'COMPANY' && role !== 'CUSTOMER'; @@ -1622,6 +1660,7 @@ export default function DashboardDesignPreview(props: { const serviceTabKey = normalizeTabKey(spec.serviceTabLabel); const galleryTabKey = normalizeTabKey(spec.galleryTabLabel); const experienceTabKey = normalizeTabKey(spec.experienceTabLabel); + const requiresVisualAssets = mediaConfig.mode === 'visual'; const testimonialsTabKey = normalizeTabKey('testimonials'); const faqsTabKey = normalizeTabKey('faqs'); const portfolioJobsCompleted = portfolioJobsCompletedPreview; @@ -1708,7 +1747,7 @@ export default function DashboardDesignPreview(props: { }); if (stepKey === serviceTabKey && portfolioServices().length < 1) { setPortfolioValidationNotice('Add at least one service with pricing.'); - } else if (stepKey === galleryTabKey && (portfolioPhotos().length < 1 || portfolioPhotos().length > 6)) { + } else if (stepKey === galleryTabKey && requiresVisualAssets && (portfolioPhotos().length < 1 || portfolioPhotos().length > 6)) { setPortfolioValidationNotice('Add 1 to 6 portfolio photos.'); } else if (stepKey === experienceTabKey && portfolioExperiences().length < 1) { setPortfolioValidationNotice('Add at least one experience entry.'); @@ -1720,7 +1759,7 @@ export default function DashboardDesignPreview(props: { setPortfolioFormErrors((prev) => ({ ...prev, ...nextErrors })); return Object.keys(nextErrors).length === 0 && !(stepKey === serviceTabKey && portfolioServices().length < 1) - && !(stepKey === galleryTabKey && (portfolioPhotos().length < 1 || portfolioPhotos().length > 6)) + && !(stepKey === galleryTabKey && requiresVisualAssets && (portfolioPhotos().length < 1 || portfolioPhotos().length > 6)) && !(stepKey === experienceTabKey && portfolioExperiences().length < 1); }; const addServiceDraft = () => { @@ -1901,18 +1940,36 @@ export default function DashboardDesignPreview(props: {
-
-

Portfolio photos ({portfolioPhotos().length}/6)

- -
-
- {(photo, idx) => ( -
- {photo} - + +

Structured work proof (photos optional)

+ {(item, idx) => ( +
+ +
+

{item}

+

Entry #{idx() + 1} for outcome-focused portfolio evidence.

+
+
+ )}
- )}
-
+ } + > +
+

Portfolio photos ({portfolioPhotos().length}/6)

+ +
+
+ {(photo, idx) => ( +
+ {photo} + +
+ )}
+
+
@@ -2218,7 +2275,7 @@ export default function DashboardDesignPreview(props: {

{titleCase(spec.galleryTabLabel)}

- +
@@ -2433,7 +2490,7 @@ export default function DashboardDesignPreview(props: { } goToPortfolioStep(activePortfolioStepIndex + 1); }} - style="height:32px;border-radius:8px;border:none;background:#03004E;color:white;padding:0 12px;font-size:12px;font-weight:700" + style="height:32px;border-radius:8px;border:none;background:#FF5E13;color:white;padding:0 12px;font-size:12px;font-weight:700" > {activePortfolioStepIndex >= portfolioStepKeys.length - 1 ? 'Final Preview' : 'Next'} @@ -2469,13 +2526,28 @@ export default function DashboardDesignPreview(props: {
); } - if (tab === 'quick actions') { +if (tab === 'quick actions') { + const r = normalizeRoleKey(props.roleKey || ''); + const spec = portfolioSpecForRole(props.roleKey || ''); + const roleLabel = spec.roleLabel; + const quickActionsByRole = (() => { + if (r === 'COMPANY') return ['Post New Job', 'View Applications', 'Shortlisted Candidates', 'Buy Credits']; + if (r === 'CUSTOMER') return ['Post New Requirement', 'View Responses', 'Buy Credits', 'Explore Professionals']; + if (r === 'JOB_SEEKER') return ['Browse Jobs', 'View Applications', 'Update Resume', 'Buy Credits']; + return ['Browse Leads', 'Update Portfolio', 'View Responses', 'Buy Credits']; + })(); + const activityByRole = (() => { + if (r === 'COMPANY') return ['Job posted successfully', 'New application received', 'Candidate shortlisted']; + if (r === 'CUSTOMER') return ['Requirement posted', 'New response received', 'Professional accepted']; + if (r === 'JOB_SEEKER') return ['Application submitted', 'Interview scheduled', 'Job saved']; + return ['Lead request sent', 'Portfolio updated', 'Response received']; + })(); return (

Quick Actions

- {['Post New Requirement', 'View Responses', 'Buy Credits', 'Explore Professionals'].map((a, i) => ( + {quickActionsByRole.map((a, i) => ( @@ -2485,13 +2557,13 @@ export default function DashboardDesignPreview(props: {

Recent Activity

- {['Requirement posted', 'New response received', 'Credit purchase completed'].map((a) =>
{a}
)} + {activityByRole.map((a) =>
{a}
)}
); } - return ( +return (
@@ -2514,7 +2586,7 @@ export default function DashboardDesignPreview(props: { - +
@@ -2522,50 +2594,144 @@ export default function DashboardDesignPreview(props: {

Widget Customization

Drag and drop cards below to reorder your dashboard widgets.

-
-
-

Welcome back, Alex

-

To start receiving opportunities, complete My Profile and My Portfolio, then submit both for approval.

-
- - - - - -
-
-
-

Profile Status

-

85%

-
-
-

Credits Balance

-

2,500

-
-
-
- - {(w) => ( -
{ - setDraggingDashboardWidget(w); - e.dataTransfer?.setData('text/plain', w); - }} - onDragOver={(e) => e.preventDefault()} - onDrop={(e) => { - e.preventDefault(); - moveDashboardWidget(draggingDashboardWidget() || '', w); - setDraggingDashboardWidget(null); - }} - style={`border:1px solid #E5E7EB;background:${draggingDashboardWidget() === w ? '#FFF8F4' : 'white'};border-radius:12px;padding:10px;min-height:92px;box-shadow:0 1px 3px rgba(0,0,0,0.05);cursor:grab`} - > -

{titleCase(w)}

-

42

+ {(() => { + const r = normalizeRoleKey(props.roleKey || ''); + const isPro = r !== 'COMPANY' && r !== 'CUSTOMER' && r !== 'JOB_SEEKER'; + if (isPro) { + return ( +
+
+
+
+ +

Tracecoins

+
+
+
+
+

Available

+

2,500

+
+
+

Reserved

+

250

+
+
+
+
+
+
+ +

My Lead Requests

+
+
+
+
+ Total + 12 +
+
+ Pending + 5 +
+
+ Accepted + 4 +
+
+ Rejected + 3 +
+
+
+
+
+
+ +

Portfolio

+
+
+
+

Status

+

Approved

+
+
+
+
+
+ +

Profile

+
+
+
+

Completion

+

85%

+
+
+
+
+
+ +

Verification

+
+
+
+

Status

+

Pending

+
+
+
+
+
+ +

Open Leads

+
+
+
+

Marketplace

+

8

+
+
- )} - -
+ ); + } + return ( +
+
+

Welcome back, {portfolioSpecForRole(props.roleKey || '').roleLabel}

+

{(() => { + if (r === 'COMPANY') return 'Manage your job postings and find the best candidates.'; + if (r === 'CUSTOMER') return 'Post requirements and connect with verified professionals.'; + if (r === 'JOB_SEEKER') return 'Track your applications and discover new opportunities.'; + return 'Complete your profile and portfolio to start receiving leads.'; + })()}

+
+ + + + + + + + + + + + + +
+
+
+

Profile Status

+

85%

+
+
+

Credits Balance

+

2,500

+
+
+ ); + })()}
); } @@ -2726,7 +2892,7 @@ export default function DashboardDesignPreview(props: {
-
@@ -2752,7 +2918,7 @@ export default function DashboardDesignPreview(props: { @@ -2821,7 +2987,7 @@ export default function DashboardDesignPreview(props: {
- +
@@ -2845,260 +3011,55 @@ export default function DashboardDesignPreview(props: { - +
); } - if (customerKey() === 'leads') { - if (!bothApprovalsApproved()) { - return ( -
-
-

Leads Locked

-

- Complete verification before accessing leads. You must submit profile and portfolio, then get admin approval. -

-
-
-

Profile Verification

-

{approvalTone(profileApprovalState()).label}

-
-
-

Portfolio Verification

-

{approvalTone(portfolioApprovalState()).label}

-
-
-
- - - -
-
-
- ); - } - const requestStatusPill = (status: string) => { - if (status === 'request_sent') return { bg: '#DBEAFE', c: '#1D4ED8', text: 'Request Sent' }; - if (status === 'approved') return { bg: '#DCFCE7', c: '#15803D', text: 'Approved' }; - if (status === 'contact_unlocked') return { bg: '#ECFDF3', c: '#047857', text: 'Contact Unlocked' }; - if (status === 'rejected') return { bg: '#FEE2E2', c: '#B91C1C', text: 'Rejected' }; - if (status === 'expired_refunded') return { bg: '#E0E7FF', c: '#4338CA', text: 'Expired · Refunded' }; - if (status === 'cancelled_by_professional') return { bg: '#FFF1EB', c: '#C2410C', text: 'Cancelled by Professional' }; - return { bg: '#F3F4F6', c: '#6B7280', text: titleCase(status) }; - }; - const leadTabs = () => (activeLeadDetailId() ? [...LEAD_MARKETPLACE_TABS, 'View Details'] : LEAD_MARKETPLACE_TABS); - const selectedLead = () => leadCards().find((item) => item.id === activeLeadDetailId()) || null; +if (customerKey() === 'leads') { + const r = normalizeRoleKey(props.roleKey || ''); + const isPro = r !== 'COMPANY' && r !== 'CUSTOMER' && r !== 'JOB_SEEKER'; - if (resolvedTabKey() === 'requested contacts') { + if (isPro) { + const marketplaceLeads = [ + { id: 'REQ-001', title: 'Wedding Photography - ECR', location: 'Chennai, India', budget: '₹50,000 - ₹80,000', category: 'Photography', date: 'Apr 28, 2026', desc: 'Looking for experienced photographer for traditional + cinematic wedding coverage. 2 cinematographers needed.' }, + { id: 'REQ-002', title: 'Product Shoot - Studio Required', location: 'Nungambakkam, Chennai', budget: '₹15,000 - ₹25,000', category: 'Photography', date: 'May 02, 2026', desc: 'E-commerce product shoot for clothing brand. 20 products, need studio with lighting setup.' }, + { id: 'REQ-003', title: 'Corporate Headshots', location: 'OMR, Chennai', budget: '₹8,000 - ₹12,000', category: 'Photography', date: 'May 10, 2026', desc: 'Need headshots for 15 team members. Indoor office setup preferred.' }, + ]; return ( -
-
-
-

Total Spent

-

{250 - leadCredits()}

-

Tracecoins used this month

-
-
-

Active Requests

-

{leadCards().filter((card) => card.status === 'requested').length}

-
-
card.status === 'requested').length * 10)}%;background:#FF5E13`} /> -
-
-
-

Locked Credits

-

{lockedLeadCredits()}

-

Held until service seeker decision (auto-refund in 1 day)

-
+
+
+

Leads

+

Browse open requirements from customers and request contact access.

- -
-
-

Requested Contacts

-
-
- - -
- {['Newest First', 'Oldest First'].map((item) => ( - - ))} +
+ + {(lead) => ( +
+
+
+
+ {lead.category} + {lead.location} +
+

{lead.title}

+

{lead.desc}

+
+ {lead.location} + {lead.date} +
- -
-
- - -
- {['All Status', 'Request Sent', 'Contact Unlocked', 'Rejected', 'Expired Refunded', 'Cancelled By Professional'].map((item) => ( - - ))} +
+ {lead.budget} + Budget Range +
- -
- -
-
-
-
- - setRequestedSearch(e.currentTarget.value)} placeholder="Search by lead ID / title / area..." style="border:none;background:transparent;outline:none;width:100%;font-size:12px;color:#111827" /> -
- Sort: {requestedSortFilter()} - Status: {requestedStatusFilter()} -
-
- - - - {['Lead ID', 'Lead Title', 'Request Date', 'Request Status', 'Cost', 'Decision Date', 'Action'].map((h) => ( - - ))} - - - - - {(row) => { - const badge = requestStatusPill(row.status); - return ( - - - - - - - - - - ); - }} - - -
{h}
#{row.id} -

{row.title}

-

{row.city}

-
{row.requestDate}{badge.text}{leadCostPerContact}{row.decisionDate} -
- - - - - - - - -
-
-
-
-

- Showing {pagedRequestedRows().length ? (requestedPage() - 1) * requestedPerPage + 1 : 0} to {(requestedPage() - 1) * requestedPerPage + pagedRequestedRows().length} of {filteredRequestedRows().length} requests -

-
- i + 1)}> - {(pageNo) => ( - - )} - -
-
-
-
- ); - } - - if (leadMarketplaceTab() === 'View Details' && selectedLead()) { - const lead = selectedLead()!; - const spec = leadDetailsSpec(lead); - return ( -
-
-
-
-
-

View Details

-

{lead.title}

-

{lead.category} • {lead.location} • {lead.area}

-
- {lead.match} -
-
- Time Frame:{spec.timeframe} - Date:{lead.dateRequired} - Budget:{lead.budget} - Area:{String(lead.area || 'Chennai')} -
-
- -
-
- -

Schedule

{spec.timeframe}

-
-
- -

Date Required

{lead.dateRequired}

-
-
- -

Area

{String(lead.area || 'Chennai')}

-
-
- -
-

Win Probability

-

{leadProbability(lead)}%

-
-
-
-
-
-
-
-

Work Scope

-

{spec.scope}

-
-
-

Lead Specific Highlights

-
- {(item) =>
{item}
}
-
-
-
-
-
Lead ID{lead.id}
-
- Unlock Cost - NG{lead.cost} Tracecoin -
-
Contacted{lead.contactCount}/{lead.maxContacts}
-
- - -
-
-
+ )} +
); @@ -3106,198 +3067,15 @@ export default function DashboardDesignPreview(props: { return (
-
-
- - {(item) => ( - - )} - -
-
-
- - setLeadSearch(e.currentTarget.value)} placeholder="Search by role, area, keyword..." style="border:none;background:transparent;outline:none;width:100%;font-size:12px;color:#111827" /> -
-
- - -
-
-

Area

- -
-
-

Budget

- -
-
-

Date

- -
-
- - -
-
-
-
-
- - -
- {['Newest First', 'Budget High-Low', 'Budget Low-High'].map((item) => ( - - ))} -
-
-
- Sort: {leadSortFilter()} -
- -
- - {(lead) => ( -
-
-
-
- - {lead.status === 'unlocked' ? 'Contact Unlocked' : lead.status === 'requested' ? 'Request Sent' : lead.status === 'closed' ? 'Lead Closed' : 'Open Lead'} - - {lead.category} • {lead.location} -
-

{lead.title}

-
- Area: {lead.area} - | - Date: {lead.dateRequired} - | - - T - {lead.cost} - - | - - - - - - - - {leadProbability(lead)}% - - | - - - {lead.contactCount}/{lead.maxContacts} - contacted - - {Math.max(0, lead.maxContacts - lead.contactCount)} slots left -
-
-
-

{lead.match}

-

{lead.budget}

-

Est. Budget

-
- - - - - - - -
-
-
-
- )} -
-
-
-

- Showing {pagedLeadCards().length ? (leadPage() - 1) * leadsPerPage + 1 : 0} to {(leadPage() - 1) * leadsPerPage + pagedLeadCards().length} of {filteredLeadCards().length} leads -

-
- i + 1)}> - {(pageNo) => ( - - )} - -
-
+
+

Leads

+

+ Browse marketplace requirements and request contact access for current opportunities. +

- -
-
-
- T -

Confirm Contact Unlock

-
-

You are about to spend 25 Tracecoins to request and view this service seeker contact when approved. Do you want to continue?

-
- - -
-
-
-
); - } +} if (customerKey() === 'jobs') { if (isJobSeekerRole()) { @@ -3374,7 +3152,7 @@ export default function DashboardDesignPreview(props: {

Boost your response rate

Recruiters are more likely to respond to profiles with updated resume and portfolio links.

- +
); @@ -3384,7 +3162,7 @@ export default function DashboardDesignPreview(props: { return (
-
-
+

Total Compensation

{selectedJob().salary} / year

@@ -3605,7 +3383,7 @@ export default function DashboardDesignPreview(props: { setJobSeekerApplyStep(2); setJobSeekerScreen('apply'); }} - style="height:32px;border-radius:8px;border:none;background:#03004E;padding:0 12px;font-size:12px;font-weight:700;color:white" + style="height:32px;border-radius:8px;border:none;background:#FF5E13;padding:0 12px;font-size:12px;font-weight:700;color:white" > Apply Now @@ -3672,7 +3450,7 @@ export default function DashboardDesignPreview(props: {
-
+

Did you know?

Jobs with high-quality company descriptions receive 40% more applications. Take a moment to update your profile.

@@ -3756,7 +3534,7 @@ export default function DashboardDesignPreview(props: {
-
+

Pricing & Approval

Review costs and confirm submission

@@ -3775,7 +3553,7 @@ export default function DashboardDesignPreview(props: {

Approval Required: Yes

Your post will be reviewed by our moderation team within 24 hours.

- +
@@ -3838,7 +3616,7 @@ export default function DashboardDesignPreview(props: {
-
@@ -4082,7 +3860,7 @@ export default function DashboardDesignPreview(props: {

Keep your saved list fresh

Turn on reminders to avoid missing expiring opportunities.

- +
); @@ -4325,7 +4103,7 @@ export default function DashboardDesignPreview(props: {
- +
@@ -4442,7 +4220,7 @@ export default function DashboardDesignPreview(props: { @@ -4516,7 +4294,7 @@ export default function DashboardDesignPreview(props: { > View - +
@@ -4648,7 +4426,7 @@ export default function DashboardDesignPreview(props: {
- +
@@ -4661,7 +4439,7 @@ export default function DashboardDesignPreview(props: {
- + {['Lead ID', 'Lead Title', 'Request Date', 'Status', 'Cost', 'Decision Date', 'Action'].map((h) => ( @@ -4752,7 +4530,7 @@ export default function DashboardDesignPreview(props: { @@ -4776,7 +4554,7 @@ export default function DashboardDesignPreview(props: { > View Portfolio - + @@ -4825,15 +4603,16 @@ export default function DashboardDesignPreview(props: { ] as const; if (tab === 'buy credits') { + const theme = pkgCardTheme(); return (
-
+

Current Balance

-

12,450 Tracecoins

-

+12% from last month

+

12,450 Tracecoins

+

+12% from last month

- +
@@ -4843,48 +4622,55 @@ export default function DashboardDesignPreview(props: { { name: 'Premium', subtitle: 'Power', credits: '10,000', price: '₹69,999', bonus: '+1,500 bonus', popular: false }, { name: 'Elite', subtitle: 'Enterprise', credits: '50,000', price: '₹2,49,999', bonus: '+10,000 bonus', popular: false }, ].map((pkg) => ( -
+
- MOST POPULAR +
+ Best Value +
-
- +
+
+

{pkg.subtitle}

+

{pkg.name}

+
+
+ {pkg.credits} + Credits +
+
+

{pkg.price}

+

{pkg.bonus}

+
+
-

{pkg.subtitle}

-

{pkg.name}

-

{pkg.credits}

-

Credits

-

{pkg.bonus}

-

{pkg.price}

-
))}
-
-

Why buy larger packs?

+
+

Why buy larger packs?

-
-

More savings

-

Higher packs include bonus credits.

+
+

More savings

+

Higher packs include bonus credits.

-
-

No expiry

-

Credits stay active with your account.

+
+

No expiry

+

Credits stay active with your account.

-
-

Instant activation

-

Credits reflect right after purchase.

+
+

Instant activation

+

Credits reflect right after purchase.

-
-

Recommended

+
+

Recommended

Start with Standard

-

Best value for active buying and response unlocks.

- +

Best value for active buying and response unlocks.

+
@@ -4907,13 +4693,13 @@ export default function DashboardDesignPreview(props: { Filters
-
{h}
- + {['Invoice No', 'Package', 'Credits', 'Amount Paid', 'Status', 'Date', 'Actions'].map((h) => ( @@ -4975,13 +4761,13 @@ export default function DashboardDesignPreview(props: { Filters -
{h}
- + {['Usage ID', 'Action Type', 'Credits Used', 'Related ID', 'Date', 'Remarks'].map((h) => ( @@ -5034,13 +4820,13 @@ export default function DashboardDesignPreview(props: { Filters -
{h}
- + {['Invoice Number', 'Billing Date', 'Package', 'Total', 'Status'].map((h) => ( @@ -5098,13 +4884,13 @@ export default function DashboardDesignPreview(props: {

Pending Invoices

1

- +

Recent Transactions

- +
@@ -5118,13 +4904,13 @@ export default function DashboardDesignPreview(props: { Filters
-
{h}
- + {['Transaction ID', 'Package', 'Credits', 'Amount Paid', 'Status', 'Date'].map((h) => ( @@ -5335,13 +5121,13 @@ export default function DashboardDesignPreview(props: {

Admin requested missing documents

Required Missing Documents: Address Proof (clear PDF/JPG/PNG).

- +

Documents

- +
{h}
@@ -5396,7 +5182,7 @@ export default function DashboardDesignPreview(props: {
- +
@@ -5455,7 +5241,7 @@ export default function DashboardDesignPreview(props: {
All Categories
Search help articles, tickets, and guides
- +
Popular: @@ -5590,7 +5376,7 @@ export default function DashboardDesignPreview(props: { onClick={() => { openTicketDetails(t.id); }} - style="height:28px;border-radius:8px;border:none;background:#0D0D2A;color:white;font-size:11px;font-weight:700;padding:0 10px;cursor:pointer" + style="height:28px;border-radius:8px;border:none;background:#FF5E13;color:white;font-size:11px;font-weight:700;padding:0 10px;cursor:pointer" > Open @@ -5630,7 +5416,7 @@ export default function DashboardDesignPreview(props: { style="min-height:82px;width:100%;border:1px solid #E5E7EB;border-radius:10px;background:#F9FAFB;padding:10px;font-size:12px;color:#111827;resize:vertical" />
- +
@@ -5713,7 +5499,7 @@ export default function DashboardDesignPreview(props: {
- +
@@ -5740,7 +5526,7 @@ export default function DashboardDesignPreview(props: { } return (
- {['Service Seeker (Active)', 'Professional', 'Company'].map((r, i) =>

{r}

)} + {['Service Seeker (Active)', 'Professional', 'Company'].map((r, i) =>

{r}

)}
); } diff --git a/src/lib/admin-session.ts b/src/lib/admin-session.ts index 8fcbbcb..40d51c0 100644 --- a/src/lib/admin-session.ts +++ b/src/lib/admin-session.ts @@ -4,7 +4,18 @@ const SESSION_TTL_SECONDS = 60 * 60 * 12; export function hasAdminSession(): boolean { if (typeof document === 'undefined') return false; - return document.cookie.split(';').some((entry) => entry.trim() === `${SESSION_COOKIE}=${SESSION_VALUE}`); + // Check cookie exists + const hasCookie = document.cookie.split(';').some((entry) => entry.trim() === `${SESSION_COOKIE}=${SESSION_VALUE}`); + // Also check if sessionStorage has a valid token as fallback + const hasToken = (() => { + try { + const token = sessionStorage.getItem('nxtgauge_admin_access_token'); + return Boolean(token && token.trim().length > 0); + } catch { + return false; + } + })(); + return hasCookie || hasToken; } export function setAdminSession(): void { diff --git a/src/lib/server/gateway.ts b/src/lib/server/gateway.ts index 9b0f6bc..83c1281 100644 --- a/src/lib/server/gateway.ts +++ b/src/lib/server/gateway.ts @@ -20,15 +20,18 @@ export function forwardCookies(request: Request): Record { /** * Merge auth + cookie headers from the incoming request with any extra headers provided. + * Extra headers (e.g. Content-Type: multipart/form-data for file uploads) take precedence + * over the default application/json. */ export function withAuthHeaders( request: Request, extra: Record = {}, ): Record { return { - 'Content-Type': 'application/json', ...forwardAuth(request), ...forwardCookies(request), ...extra, + // Default Content-Type only if extra didn't already provide one + ...(extra['Content-Type'] ? {} : { 'Content-Type': 'application/json' }), }; } diff --git a/src/routes/admin/[...module].tsx b/src/routes/admin/[...module].tsx index 108a926..f452e76 100644 --- a/src/routes/admin/[...module].tsx +++ b/src/routes/admin/[...module].tsx @@ -1,36 +1,37 @@ -import { A, useParams } from '@solidjs/router'; -import { createMemo } from 'solid-js'; -import ApprovalManagementPage from './approval'; -import VerificationManagementPage from './verification'; -import UsersManagementPage from './users'; -import ExternalDashboardManagementPage from './external-dashboard-management'; -import InternalDashboardManagementPage from './internal-dashboard-management'; +import { A, useParams } from "@solidjs/router"; +import { createMemo, lazy } from "solid-js"; + +const ApprovalManagementPage = lazy(() => import("./approval")); +const VerificationManagementPage = lazy(() => import("./verification")); +const UsersManagementPage = lazy(() => import("./users")); +const ExternalDashboardManagementPage = lazy(() => import("./external-dashboard-management")); +const InternalDashboardManagementPage = lazy(() => import("./internal-dashboard-management")); function toTitle(value: string): string { return value .split(/[-_/]/g) .filter(Boolean) .map((part) => part.charAt(0).toUpperCase() + part.slice(1)) - .join(' '); + .join(" "); } -const LEGACY_ADMIN_ORIGIN = import.meta.env.VITE_LEGACY_ADMIN_ORIGIN || 'http://localhost:9201'; +const LEGACY_ADMIN_ORIGIN = import.meta.env.VITE_LEGACY_ADMIN_ORIGIN || "http://localhost:9201"; function resolveLegacyPath(modulePath: string): string { switch (modulePath) { - case 'roles': - return '/roles?scope=internal'; - case 'approval-management': - case 'approvals': - return '/approval'; - case 'onboarding-management': - return '/external-dashboard-management'; - case 'internal-dashboard-management': - return '/internal-dashboard-management'; - case 'external-dashboard-management': - return '/external-dashboard-management'; - case 'support': - return '/help'; + case "roles": + return "/roles?scope=internal"; + case "approval-management": + case "approvals": + return "/approval"; + case "onboarding-management": + return "/external-dashboard-management"; + case "internal-dashboard-management": + return "/internal-dashboard-management"; + case "external-dashboard-management": + return "/external-dashboard-management"; + case "support": + return "/help"; default: return `/${modulePath}`; } @@ -38,29 +39,42 @@ function resolveLegacyPath(modulePath: string): string { export default function LegacyModuleShellPage() { const params = useParams(); - const modulePath = String((params as any).module || '').trim(); + const modulePath = String((params as any).module || "").trim(); - if (modulePath === 'approval' || modulePath === 'approval-management' || modulePath === 'approvals' || modulePath === 'approval-status') { + if ( + modulePath === "approval" || + modulePath === "approval-management" || + modulePath === "approvals" || + modulePath === "approval-status" + ) { return ; } - if (modulePath === 'verification' || modulePath === 'verification-status' || modulePath === 'verification-management') { + if ( + modulePath === "verification" || + modulePath === "verification-status" || + modulePath === "verification-management" + ) { return ; } - if (modulePath === 'users' || modulePath === 'users-management' || modulePath === 'user-management') { + if ( + modulePath === "users" || + modulePath === "users-management" || + modulePath === "user-management" + ) { return ; } - if (modulePath === 'external-dashboard-management' || modulePath === 'onboarding-management') { + if (modulePath === "external-dashboard-management" || modulePath === "onboarding-management") { return ; } - if (modulePath === 'internal-dashboard-management') { + if (modulePath === "internal-dashboard-management") { return ; } - const moduleName = createMemo(() => toTitle(modulePath || 'Management')); + const moduleName = createMemo(() => toTitle(modulePath || "Management")); const legacyPath = createMemo(() => resolveLegacyPath(modulePath)); const legacyUrl = createMemo(() => `${LEGACY_ADMIN_ORIGIN}${legacyPath()}`); @@ -72,12 +86,24 @@ export default function LegacyModuleShellPage() {