From 7c2c4bfb46d4e8c3f58530383719d9d88c53a55f Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Wed, 22 Oct 2025 14:15:20 +0200 Subject: [PATCH] Fix pairing system: Add waitForPairingCommitment with device sync and update documentation - Add waitForPairingCommitment function with automatic device synchronization - Integrate updateDevice() call in waitForPairingCommitment for better sync - Increase retry attempts to 30 with 2s delay (60s total wait time) - Add detailed logging for pairing process synchronization - Update router to call waitForPairingCommitment before confirmPairing - Remove redundant updateDevice() call from router - Update PAIRING_SYSTEM_ANALYSIS.md with coherence issues and recommendations - Identify joiner flow inconsistencies requiring future fixes --- doc/PAIRING_SYSTEM_ANALYSIS.md | 277 + package.json | 2 +- screenlog.0 | 253667 ++++++++++++++++++++++++++++++ src/models/process.model.ts | 2 + src/router.ts | 115 +- src/services/service.ts | 165 +- src/utils/sp-address.utils.ts | 14 +- 7 files changed, 254143 insertions(+), 99 deletions(-) create mode 100644 doc/PAIRING_SYSTEM_ANALYSIS.md create mode 100644 screenlog.0 diff --git a/doc/PAIRING_SYSTEM_ANALYSIS.md b/doc/PAIRING_SYSTEM_ANALYSIS.md new file mode 100644 index 0000000..49e2e8c --- /dev/null +++ b/doc/PAIRING_SYSTEM_ANALYSIS.md @@ -0,0 +1,277 @@ +# Analyse du Système de Pairing - Version Actuelle + +## Vue d'ensemble + +Ce document résume l'analyse complète du système de pairing et les corrections apportées pour résoudre les problèmes identifiés. + +## Problèmes Identifiés et Solutions + +### 1. Problème de `checkConnections` pour le Pairing + +**Problème** : La méthode `checkConnections` a été mise à jour il y a un mois pour prendre un `Process` et un `stateId` au lieu d'une liste de membres, mais la gestion des processus de pairing était défaillante. + +**Symptômes** : +- `checkConnections` échouait pour les processus de pairing +- Les adresses des membres n'étaient pas correctement récupérées +- Erreur "Not a pairing process" même pour des processus de pairing valides + +**Solution Appliquée** : +```typescript +// Correction dans checkConnections pour gérer les pairedAddresses +if (members.size === 0) { + // This must be a pairing process + let publicData: Record | null = null; + if (!stateId) { + publicData = process.states[process.states.length - 2]?.public_data; + } else { + publicData = process.states.find(state => state.state_id === stateId)?.public_data || null; + } + + // If pairedAddresses is not in the current state, look in previous states + if (!publicData || !publicData['pairedAddresses']) { + // Look for pairedAddresses in previous states + for (let i = process.states.length - 1; i >= 0; i--) { + const state = process.states[i]; + if (state.public_data && state.public_data['pairedAddresses']) { + publicData = state.public_data; + break; + } + } + } + + const decodedAddresses = this.decodeValue(publicData['pairedAddresses']); + members.add({ sp_addresses: decodedAddresses }); +} +``` + +### 2. Problème de `confirmPairing` avec `getPairingProcessId()` + +**Problème** : `confirmPairing` échouait car `getPairingProcessId()` utilisait `sdkClient.get_pairing_process_id()` qui n'était pas encore disponible car le processus de pairing n'était pas encore committé. + +**Symptômes** : +- Erreur "Failed to get pairing process" dans `confirmPairing` +- Le SDK n'avait pas encore le processus de pairing disponible +- Échec de confirmation du pairing + +**Solution Appliquée** : +```typescript +public async confirmPairing(pairingId?: string) { + try { + console.log('confirmPairing'); + let processId: string; + if (pairingId) { + processId = pairingId; + console.log('pairingId (provided):', processId); + } else if (this.processId) { + processId = this.processId; + console.log('pairingId (from stored processId):', processId); + } else { + // Try to get pairing process ID, with retry if it fails + let retries = 3; + while (retries > 0) { + try { + processId = this.getPairingProcessId(); + console.log('pairingId (from SDK):', processId); + break; + } catch (e) { + retries--; + if (retries === 0) throw e; + console.log(`Failed to get pairing process ID, retrying... (${retries} attempts left)`); + await new Promise(resolve => setTimeout(resolve, 1000)); + } + } + } + // ... rest of the method + } catch (e) { + console.error('Failed to confirm pairing'); + return; + } +} +``` + +### 3. Problème de `pairing_process_commitment` à `null` + +**Problème** : Le `pairing_process_commitment` restait à `null` dans le device dump car le device n'était pas synchronisé avec l'état committé du processus. + +**Symptômes** : +- `pairing_process_commitment: null` dans le device dump +- Le commitment n'était pas synchronisé avec l'état committé du processus +- Échec de la confirmation du pairing + +**Solution Appliquée** : +```typescript +// Intégration de updateDevice() dans waitForPairingCommitment +public async waitForPairingCommitment(processId: string, maxRetries: number = 10, retryDelay: number = 1000): Promise { + console.log(`Waiting for pairing process ${processId} to be committed...`); + + // First, try to update the device to sync with the committed state + try { + await this.updateDevice(); + console.log('Device updated, checking commitment...'); + } catch (e) { + console.log('Failed to update device, continuing with polling...', e); + } + + for (let i = 0; i < maxRetries; i++) { + try { + const device = this.dumpDeviceFromMemory(); + console.log(`Attempt ${i + 1}/${maxRetries}: pairing_process_commitment =`, device.pairing_process_commitment); + + // Check if the commitment is set and not null/empty + if (device.pairing_process_commitment && + device.pairing_process_commitment !== null && + device.pairing_process_commitment !== '') { + console.log('Pairing process commitment found:', device.pairing_process_commitment); + return; + } + } catch (e) { + console.log(`Attempt ${i + 1}/${maxRetries}: Device not ready yet - ${e}`); + } + + if (i < maxRetries - 1) { + await new Promise(resolve => setTimeout(resolve, retryDelay)); + } + } + + throw new Error(`Pairing process ${processId} was not committed after ${maxRetries} attempts`); +} +``` + +Et simplification du router : +```typescript +console.log("⏳ Waiting for pairing process to be committed..."); +await services.waitForPairingCommitment(pairingId); + +console.log("🔁 Confirming pairing..."); +await services.confirmPairing(pairingId); +``` + +## Architecture du Système de Pairing + +### Flux de Création du Pairing (Créateur) + +1. **Création du processus** : `createPairingProcess("", [myAddress])` +2. **Enregistrement du device** : `pairDevice(pairingId, [myAddress])` +3. **Traitement de l'API** : `handleApiReturn(createPairingProcessReturn)` +4. **Création de la mise à jour PRD** : `createPrdUpdate(pairingId, stateId)` +5. **Approbation du changement** : `approveChange(pairingId, stateId)` +6. **Attente du commit avec synchronisation** : `waitForPairingCommitment(pairingId)` (inclut `updateDevice()`) +7. **Confirmation du pairing** : `confirmPairing(pairingId)` + +### Flux de Rejoindre le Pairing (Joiner) - ⚠️ INCOHÉRENT + +**Problème identifié** : Le joiner n'a pas de flux de confirmation complet. + +**Flux actuel (incomplet)** : +1. **Création avec liste vide** : `createPairingProcess("", [])` ❌ +2. **Établissement des connexions** : `checkConnections(process)` +3. **Pas de confirmation** : Aucun `waitForPairingCommitment` ou `confirmPairing` ❌ + +**Flux attendu (cohérent)** : +1. **Récupération du processus existant** : `getPairingProcessId()` +2. **Rejoindre le processus** : Pas de création, mais participation au processus existant +3. **Flux de confirmation complet** : Même flux que le créateur +4. **Attente du commit** : `waitForPairingCommitment()` +5. **Confirmation du pairing** : `confirmPairing()` + +### Gestion des Connexions + +La méthode `checkConnections` gère maintenant : +- **Processus normaux** : Utilise les rôles pour trouver les membres +- **Processus de pairing** : Utilise `pairedAddresses` des données publiques +- **Recherche dans les états précédents** : Si `pairedAddresses` n'est pas dans l'état actuel +- **Décodage des adresses** : Les données publiques sont encodées et nécessitent un décodage + +## Points Clés Appris + +### 1. Encodage des Données Publiques +- Les données publiques sont encodées avec `this.sdkClient.encode_json()` +- `pairedAddresses` nécessite un décodage avec `this.decodeValue()` +- Les données ne sont pas directement utilisables sans décodage + +### 2. Gestion Multi-Hosts +- Le créateur et le joiner peuvent être sur des hosts différents +- Le joiner doit récupérer les adresses depuis le processus existant +- `this.processId` n'est disponible que sur le même host + +### 3. Synchronisation du SDK +- Le SDK n'a pas immédiatement le processus de pairing disponible +- Il faut attendre que le processus soit committé +- `updateDevice()` est nécessaire pour synchroniser l'état + +### 4. Gestion des États +- Les processus de pairing peuvent avoir des mises à jour partielles +- Il faut chercher `pairedAddresses` dans les états précédents si nécessaire +- La logique de fallback est cruciale pour la robustesse + +## Version Actuelle + +### État des Corrections +- ✅ `checkConnections` corrigé pour les processus de pairing +- ✅ `confirmPairing` avec gestion des paramètres et retry +- ✅ `waitForPairingCommitment` avec synchronisation automatique du device +- ✅ Intégration de `updateDevice()` dans `waitForPairingCommitment` +- ✅ Gestion des cas multi-hosts +- ✅ Simplification du flux de création +- ⚠️ **Problème identifié** : Incohérence entre créateur et joiner + +### Fonctionnalités Opérationnelles +- **Création de pairing** : ✅ Fonctionne avec les adresses correctes +- **Rejoindre un pairing** : ❌ Flux incomplet, pas de confirmation +- **Établissement des connexions** : ✅ `checkConnections` trouve les membres +- **Confirmation du pairing** : ⚠️ Seulement côté créateur, pas côté joiner +- **Synchronisation du commitment** : ✅ Côté créateur, ❌ Côté joiner +- **Flux simplifié** : ✅ Côté créateur, ❌ Côté joiner + +### Problèmes de Cohérence Identifiés + +#### Incohérence Créateur vs Joiner +- **Créateur** : Flux complet avec 7 étapes incluant confirmation +- **Joiner** : Flux incomplet avec seulement 2 étapes, pas de confirmation +- **Impact** : Le joiner ne suit pas le même processus de validation + +#### Problèmes Spécifiques du Joiner +1. **Création avec liste vide** : `createPairingProcess("", [])` ne permet pas de connexions +2. **Pas de flux de confirmation** : Aucun `waitForPairingCommitment` ou `confirmPairing` +3. **Pas de synchronisation** : Le `pairing_process_commitment` ne sera jamais défini +4. **Pas de validation** : Le pairing n'est pas validé côté joiner + +### Améliorations Récentes + +#### Synchronisation Automatique du Device +- **Intégration de `updateDevice()`** : Appelé automatiquement dans `waitForPairingCommitment` +- **Gestion des erreurs** : Continue le polling même si `updateDevice()` échoue +- **Logs détaillés** : Suivi complet du processus de synchronisation +- **Temps d'attente augmenté** : 30 tentatives × 2 secondes = 60 secondes max + +#### Simplification du Flux +- **Moins d'étapes manuelles** : `updateDevice()` intégré dans `waitForPairingCommitment` +- **Flux plus robuste** : Gestion automatique de la synchronisation +- **Code plus maintenable** : Logique centralisée dans une seule méthode + +### Points d'Attention +- Le système nécessite que les deux côtés soient synchronisés +- Les retry automatiques sont implémentés pour la robustesse +- La gestion des erreurs est améliorée avec des logs détaillés +- Le flux est maintenant plus prévisible et fiable +- La synchronisation du device est automatique et robuste + +## Recommandations + +### Corrections Prioritaires +1. **Corriger le flux du joiner** : Implémenter le même flux de confirmation que le créateur +2. **Unifier les processus** : Le joiner devrait rejoindre un processus existant, pas en créer un nouveau +3. **Synchronisation bidirectionnelle** : Les deux côtés doivent avoir le même niveau de validation + +### Tests et Monitoring +1. **Tests** : Tester le pairing entre différents hosts avec les deux flux +2. **Monitoring** : Surveiller les logs pour identifier les problèmes potentiels +3. **Performance** : Optimiser les délais de retry si nécessaire +4. **Documentation** : Maintenir cette documentation à jour avec les évolutions + +### Actions Immédiates +1. **Analyser le flux du joiner** : Comprendre comment il devrait rejoindre un processus existant +2. **Implémenter la cohérence** : Appliquer le même flux de confirmation aux deux côtés +3. **Valider la synchronisation** : S'assurer que les deux côtés ont le même `pairing_process_commitment` + +Cette analyse fournit une base solide pour comprendre et maintenir le système de pairing, mais révèle des incohérences importantes qui doivent être corrigées. diff --git a/package.json b/package.json index 076150b..e9bc61e 100755 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "dist/index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "build_wasm": "wasm-pack build --out-dir ../ihm_client/pkg ../sdk_client --target bundler --dev", + "build_wasm": "wasm-pack build --out-dir ../ihm_client_dev3/pkg ../sdk_client --target bundler --dev", "start": "vite --host 0.0.0.0", "build": "tsc && vite build", "deploy": "sudo cp -r dist/* /var/www/html/", diff --git a/screenlog.0 b/screenlog.0 new file mode 100644 index 0000000..c786628 --- /dev/null +++ b/screenlog.0 @@ -0,0 +1,253667 @@ + + ERROR  The request url "/etc/passwd?raw" is outside of Vite serving allow list. 00:57:51 + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. 01:05:55 + + 07:08:00 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. (x2) 07:08:00 + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cshrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kshrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vimrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitk' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/home/ank/.ssh/id_ed25519.pub" is outside of Vite serving allow list. 21:53:10 + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.stylelintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ackrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.editorconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/home/ank/.rustup/settings.toml" is outside of Vite serving allow list. 21:53:10 + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvmrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.emacs' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lynxrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vim/viminfo' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/home/ank/.gnupg/pubring.kbx" is outside of Vite serving allow list. 21:53:10 + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.black' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/dunst/dunstrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nvmrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.prettierrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.npmrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.dircolors' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.env' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.netrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.Xdefaults' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.asdfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/i3/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.envrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/fd/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fzfrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.Xauthority' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.xinitrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/polybar/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.netrc' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/ripgrep/.ripgreprc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/bat/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/home/ank/.config/user-dirs.dirs" is outside of Vite serving allow list. 21:53:10 + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.Xresources' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.motd' 21:53:10 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/rofi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.tool-versions' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 21:53:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  21:53:10 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.lessrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_profile' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.profile' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.xinitrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.zsh_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.muttrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.rvmrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.Xauthority' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.vim/viminfo' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/htop/htoprc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.gitlab/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.erlang_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.netrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.editorconfig' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.mysql_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.yarnrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/i3/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.bashrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.hushlogin' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.emacs' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.curlrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.shosts' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.gitk' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.prettierrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.tcshrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.pypirc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.stylelintrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.inputrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.go-version' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.Xdefaults' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.vimrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.npmrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.Xresources' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.netrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.dircolors' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.scala_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.htpasswd' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/credentials' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/dunst/dunstrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.zprofile' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.rediscli_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_logout' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ackrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.kube/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.nanorc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.screenrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.asdfrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.irssi/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.nvmrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/fd/ignore' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/rofi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.wgetrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.vault-token' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.motd' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.black' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.python-version' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.flake8' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.gem/credentials' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/ripgrep/.ripgreprc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-gemset' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.sql_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.mongorc.js' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.env' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.rhosts' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.cshrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.node_repl_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-version' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/polybar/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.gitignore_global' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.node-version' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.gitconfig' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.java-version' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.config/bat/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.bitbucketrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/identity' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.psqlrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.pylintrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.azure/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.gitbucket/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.terraformrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.tool-versions' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.oci/config' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_aliases' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.zshrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_rsa' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_history' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/credentials' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.envrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.kshrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.fzfrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.stripe/api_key' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:08:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:08:48 [vite] Internal server error: EACCES: permission denied, open '/root/.lynxrc' 22:08:48 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.Xauthority' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.Xdefaults' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.asdfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.Xresources' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.black' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/bat/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/fd/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/dunst/dunstrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/htop/htoprc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/i3/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/polybar/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/rofi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/ripgrep/.ripgreprc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.dircolors' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.editorconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lynxrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.prettierrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.stylelintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.tool-versions' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.xinitrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vim/viminfo' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.Xdefaults' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.Xauthority' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.Xresources' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.asdfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/bat/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.black' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/dunst/dunstrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/fd/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/htop/htoprc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/i3/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/polybar/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/rofi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/ripgrep/.ripgreprc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.editorconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.dircolors' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:35 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lynxrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.prettierrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.tool-versions' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.stylelintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vim/viminfo' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.xinitrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 22:54:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  22:54:36 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/etc/passwd" is outside of Vite serving allow list. 01:29:24 + + 01:29:29 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  The request url "/etc/passwd" is outside of Vite serving allow list. (x2) 01:29:29 + + 03:54:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  03:54:42 [vite] Internal server error: Failed to parse source for import analysis because the content contains invalid JS syntax. If you are using JSX, make sure to name the file with the .jsx or .tsx extension. + Plugin: vite:import-analysis + File: /home/ank/dev/ihm_client_dev3/.git/index + at TransformPluginContext._formatError (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49255:41) + at TransformPluginContext.error (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49250:16) + at TransformPluginContext.transform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:63993:14) + at async PluginContainer.transform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49096:18) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51929:27) + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. 03:55:11 + + 11:15:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. (x2) 11:15:43 + +13:50:55 [vite] ✨ new dependencies optimized: sweetalert2 13:50:55 +13:50:55 [vite] ✨ optimized dependencies changed. reloading 13:50:55 + 18:35:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:23 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:23 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/home/ank/.cargo/config.toml" is outside of Vite serving allow list. 18:35:24 + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/home/ank/.gnupg/trustdb.gpg" is outside of Vite serving allow list. 18:35:24 + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irbrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EISDIR: illegal operation on a directory, read 18:35:24 + at async readFileHandle (node:internal/fs/promises:555:24) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pryrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gemrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.s3cfg' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + ERROR  The request url "/home/ank/.ssh/known_hosts.old" is outside of Vite serving allow list. 18:35:24 + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.b2_account_info' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/inventory' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.aws-vault' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/metadata' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.age/keys' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/cli/alias' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/hosts' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.bundle/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.1password/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_login' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.bitwarden/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc.js' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/ignore' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/hub/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.crio/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.dockercfg' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.gitmessage' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.git-credentials' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.history' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.fishrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.irbrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/commit-msg' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-commit' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.gpg-agent-info' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.pnpmfile.js' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-push' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.pgpass' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.gemrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.pryrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.gnupg/random_seed' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.python_history' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.railsrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.linode-cli/config' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.psql_history' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.myclirc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.readline_conf' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.lesskey' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.ptpython/history' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_dsa' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:24 [vite] Internal server error: EACCES: permission denied, open '/root/.sentryrc' 18:35:24 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.secrets' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.rvm/user/rvmrc' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519_sk' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/revoked_keys' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.zshenv' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/environment' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonstartup' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/rc' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa_sk' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts2' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.sqlite_history' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.s3cfg' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 18:35:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:35:25 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonrc' 18:35:25 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + + WARN  Files in the public directory are served at the root path. 00:26:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 00:26:33 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. 03:55:13 + + 07:18:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. (x2) 07:18:15 + + + WARN  Files in the public directory are served at the root path. 09:30:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:30:13 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:20:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:20:14 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:20:40 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:20:44 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:27:14 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:36:57 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:36:57 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:36:58 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ackrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.cargo/config.toml" is outside of Vite serving allow list. 13:01:46 + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cshrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.emacs' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.env' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.envrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fzfrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gemrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.gnupg/pubring.kbx" is outside of Vite serving allow list. 13:01:46 + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irbrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.gnupg/trustdb.gpg" is outside of Vite serving allow list. 13:01:46 + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.motd' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kshrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nvmrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.netrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EISDIR: illegal operation on a directory, read 13:01:46 + at async readFileHandle (node:internal/fs/promises:555:24) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitk' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.s3cfg' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pryrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvmrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.npmrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.rustup/settings.toml" is outside of Vite serving allow list. 13:01:46 + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.ssh/id_ed25519.pub" is outside of Vite serving allow list. 13:01:46 + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.ssh/known_hosts.old" is outside of Vite serving allow list. 13:01:46 + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vimrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.config/hub/config' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.erlang_history' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.netrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.mysql_history' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.psql_history' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.muttrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.profile' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.ptpython/history' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonstartup' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.pylintrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-gemset' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/environment' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.secrets' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.s3cfg' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.sqlite_history' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.vault-token' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.zshrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.terraformrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.env' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.envrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.fishrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.cshrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:46 [vite] Internal server error: EACCES: permission denied, open '/root/.psqlrc' 13:01:46 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.go-version' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.crio/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/credentials' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.aws-vault' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bitbucketrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_profile' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_logout' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/hosts' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bitwarden/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.dockercfg' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/ignore' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc.js' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_aliases' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bundle/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_login' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/cli/alias' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/inventory' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.fzfrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.age/keys' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.1password/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.curlrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.b2_account_info' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.emacs' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/credentials' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/metadata' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.bashrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.azure/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ackrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.kshrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.htpasswd' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.pryrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.nvmrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-version' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.sentryrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.pgpass' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.rediscli_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.kube/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.oci/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.python_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/commit-msg' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.screenrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.myclirc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.git-credentials' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.rvm/user/rvmrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gitmessage' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.pypirc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.irssi/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.java-version' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.node_repl_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gitconfig' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.lesskey' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.rhosts' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.nanorc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.rvmrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gitbucket/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.flake8' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gpg-agent-info' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.npmrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.python-version' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.pnpmfile.js' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gitignore_global' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-push' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gem/credentials' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.stripe/api_key' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.tcshrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_dsa' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.shosts' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts2' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_rsa' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.scala_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.railsrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.motd' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.irbrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.readline_conf' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.inputrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.node-version' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gnupg/random_seed' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gitk' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.mongorc.js' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.linode-cli/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.lessrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-commit' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gitlab/config' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.gemrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.hushlogin' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.yarnrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.zprofile' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/rc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.vimrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa_sk' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/revoked_keys' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.sql_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.zsh_history' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.wgetrc' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/identity' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.zshenv' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 13:01:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  13:01:47 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519_sk' 13:01:47 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:17 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:18 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 06:43:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  06:43:19 [vite] Internal server error: ENOENT: no such file or directory, open '/var/www/html/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kshrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cshrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.gnupg/pubring.kbx" is outside of Vite serving allow list. 18:27:53 + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.motd' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.ssh/known_hosts.old" is outside of Vite serving allow list. 18:27:53 + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nvmrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bashrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.emacs' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_rsa' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.ssh/id_ed25519.pub" is outside of Vite serving allow list. 18:27:53 + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.gnupg/trustdb.gpg" is outside of Vite serving allow list. 18:27:53 + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitk' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.npmrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EISDIR: illegal operation on a directory, read 18:27:53 + at async readFileHandle (node:internal/fs/promises:555:24) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvmrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gemrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irbrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.cargo/config.toml" is outside of Vite serving allow list. 18:27:53 + + + ERROR  The request url "/home/ank/.rustup/settings.toml" is outside of Vite serving allow list. 18:27:53 + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pryrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.s3cfg' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.netrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.env' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.envrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ackrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vimrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fzfrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_profile' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_aliases' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_logout' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_login' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.profile' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.zshenv' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.zprofile' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.kshrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.zsh_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.cshrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.fishrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.tcshrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.hushlogin' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.motd' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts2' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.zshrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_dsa' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa_sk' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519_sk' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/identity' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/rc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/revoked_keys' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/environment' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.vault-token' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gnupg/random_seed' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.1password/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitconfig' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bitwarden/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.rhosts' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.git-credentials' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitignore_global' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitmessage' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/ignore' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc.js' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.shosts' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitlab/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/hub/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitbucket/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/commit-msg' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-commit' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.npmrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bitbucketrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gitk' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.node_repl_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.nvmrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.yarnrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.pnpmfile.js' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.pypirc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.python-version' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonstartup' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-push' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.node-version' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ptpython/history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.pylintrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.flake8' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.python_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-version' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-gemset' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.rvm/user/rvmrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.rvmrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gemrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.bundle/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gem/credentials' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.irbrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.pryrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.go-version' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/credentials' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.railsrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.java-version' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.crio/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/cli/alias' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.s3cfg' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.dockercfg' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/credentials' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/metadata' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.oci/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.azure/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.sentryrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.linode-cli/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.kube/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.terraformrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.b2_account_info' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/inventory' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.aws-vault' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/hosts' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.psqlrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.psql_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.pgpass' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.myclirc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.mysql_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.mongorc.js' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.rediscli_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.sqlite_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.sql_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.dockercfg' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.netrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.age/keys' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.b2_account_info' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.gpg-agent-info' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.env' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.stripe/api_key' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.secrets' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.envrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.htpasswd' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.screenrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.inputrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.curlrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.lesskey' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.wgetrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.lessrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.ackrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.fzfrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.emacs' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.vimrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.nanorc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.muttrc' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.readline_conf' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.irssi/config' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.erlang_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: EACCES: permission denied, open '/root/.scala_history' 18:27:53 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 18:27:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  18:27:53 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.ssh/known_hosts.old" is outside of Vite serving allow list. 19:16:08 + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.motd' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.gnupg/pubring.kbx" is outside of Vite serving allow list. 19:16:08 + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cshrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitk' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kshrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.npmrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EISDIR: illegal operation on a directory, read 19:16:08 + at async readFileHandle (node:internal/fs/promises:555:24) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nvmrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.gnupg/trustdb.gpg" is outside of Vite serving allow list. 19:16:08 + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvmrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gemrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.ssh/id_ed25519.pub" is outside of Vite serving allow list. 19:16:08 + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pryrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irbrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.rustup/settings.toml" is outside of Vite serving allow list. 19:16:08 + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/.cargo/config.toml" is outside of Vite serving allow list. 19:16:08 + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.s3cfg' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.env' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.netrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ackrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bashrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.emacs' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.fzfrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_logout' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_profile' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.profile' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.zsh_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.envrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.vimrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.zshrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.zshenv' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_aliases' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.zprofile' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.motd' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.cshrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/known_hosts2' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_login' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.hushlogin' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.tcshrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.vault-token' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_rsa' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ed25519_sk' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/rc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_dsa' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/revoked_keys' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.1password/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gnupg/random_seed' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitignore_global' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.rhosts' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.shosts' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitattributes' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.git-credentials' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitmessage' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/environment' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/git/ignore' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/identity' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bitbucketrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-push' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.npmrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.nvmrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/commit-msg' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitbucket/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.yarnrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.pypirc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ank/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.commitlintrc.js' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bitwarden/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitlab/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/hub/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonstartup' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.python_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bash_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.fishrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.node_repl_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.kshrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ssh/id_ecdsa_sk' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.node-version' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitconfig' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gitk' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.flake8' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ptpython/history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-gemset' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.pythonrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.python-version' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.rvm/user/rvmrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.railsrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gem/credentials' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.pnpmfile.js' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.pryrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.pylintrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.java-version' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.rvmrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ruby-version' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.irbrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.go-version' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.cargo/credentials' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gemrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/cli/alias' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.crio/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.s3cfg' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/credentials' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.azure/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.oci/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.dockercfg' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/metadata' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.linode-cli/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.sentryrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.b2_account_info' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.terraformrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.kube/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.husky/pre-commit' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.bundle/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/hosts' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ansible/inventory' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.aws-vault' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.psqlrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.pgpass' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.rediscli_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.psql_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.sql_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.myclirc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.mongorc.js' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.sqlite_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.stripe/api_key' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.b2_account_info' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.env' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.netrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.secrets' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.age/keys' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.readline_conf' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.screenrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.gpg-agent-info' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.ackrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.inputrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.wgetrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.curlrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.fzfrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.vimrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.lesskey' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.lessrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.mysql_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.irssi/config' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.nanorc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.erlang_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.muttrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.envrc' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.dockercfg' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.htpasswd' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.emacs' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: EACCES: permission denied, open '/root/.scala_history' 19:16:08 + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_principals' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.hushlogin' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvm/user/rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:08 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node_repl_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonstartup' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.s3cfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pypirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.oci/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.bitwarden/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitconfig' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.yarnrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/ignore' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gem/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitmessage' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519_sk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.node-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ecdsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitbucket/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.muttrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vault-token' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/environment' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fishrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pythonrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pylintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/metadata' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitlab/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/attributes' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rhosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_aliases' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/yapf/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.cassandra/cqlsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts2' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/git/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.screenrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/revoked_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zprofile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_profile' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.irssi/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bitbucketrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bundle/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/rc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_logout' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zsh_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.password-store/.gpg-id' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npm/_cacache/index-v5' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.npmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitignore_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gnupg/random_seed' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.motd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_dsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/identity' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.tcshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.nanorc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.env' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.go-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ptpython/history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pnpmfile.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.curlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitk' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.1password/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/known_hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_login' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credHelpers' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/hub/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.commitlintrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.python-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.git-credentials' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_rsa' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.shosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.inputrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/commit-msg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/authorized_keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bashrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ssh/id_ed25519' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gitattributes_global' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshenv' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.bash_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.zshrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/ubuntu/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.fzfrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.erlang_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.secrets' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.linode-cli/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.readline_conf' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/cli/alias' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sentryrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.age/keys' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.netrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.railsrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.stripe/api_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.myclirc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.kube/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ruby-gemset' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/properties' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/datadog/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.cargo/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws/sso/cache/cache-file' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ackrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vimrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/render/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.rediscli_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/gcloud/configurations/config_default' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.htpasswd' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mysql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.crio/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.irbrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psql_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.flake8' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.aws-vault' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.nvmrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-push' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.husky/pre-commit' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/hosts' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gemrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.envrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lessrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.pgpass' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.lesskey' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.gpg-agent-info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.scala_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.wgetrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.emacs' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.psqlrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.sqlite_history' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.mongorc.js' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.terraformrc' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.docker/credential-store' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.ansible/inventory' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.b2_account_info' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.dockercfg' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.vagrant.d/insecure_private_key' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.java-version' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.config/railway/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + 19:16:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  19:16:09 [vite] Internal server error: ENOENT: no such file or directory, open '/home/rocketchat/.azure/config' + at async open (node:internal/fs/promises:639:25) + at async Object.readFile (node:internal/fs/promises:1243:14) + at async LoadPluginContext.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:20320:11) + at async PluginContainer.load (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:49063:22) + at async loadAndTransform (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:51869:22) + at async viteTransformMiddleware (file:///home/ank/dev/ihm_client_dev3/node_modules/vite/dist/node/chunks/dep-CB_7IfJ-.js:61881:24) + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. 10:55:39 + + 14:08:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. (x2) 14:08:12 + + 06:44:50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. (x3) 06:44:50 + + + WARN  Files in the public directory are served at the root path. 06:45:20 +Instead of /public/.env, use /.env. + + + WARN  Files in the public directory are served at the root path. 06:45:21 +Instead of /public/.env.save, use /.env.save. + + + WARN  Files in the public directory are served at the root path. 06:45:21 +Instead of /public/.env.bak, use /.env.bak. + + + WARN  Files in the public directory are served at the root path. 06:45:22 +Instead of /public/.env.old, use /.env.old. + + + WARN  Files in the public directory are served at the root path. 06:46:47 +Instead of /public/phpinfo.php, use /phpinfo.php. + + + WARN  Files in the public directory are served at the root path. 06:46:47 +Instead of /public/info.php, use /info.php. + + + WARN  Files in the public directory are served at the root path. 06:46:48 +Instead of /public/phpinfo.php.save, use /phpinfo.php.save. + + + WARN  Files in the public directory are served at the root path. 06:46:49 +Instead of /public/info.php.save, use /info.php.save. + + + WARN  Files in the public directory are served at the root path. 09:34:53 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:34:53 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 09:35:03 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:35:03 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 09:35:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:35:06 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 09:35:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:35:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:36:43 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:36:43 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 09:36:53 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:36:53 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 09:48:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:48:09 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 09:58:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:58:11 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 09:58:14 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 09:59:40 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 09:59:40 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 09:59:40 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:00:24 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:01:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:01:41 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 10:03:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:03:41 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 10:03:41 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:06:03 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:07:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:07:42 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 10:07:42 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:08:14 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:08:14 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:08:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:08:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:08:29 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:11:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:11:43 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 10:11:43 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:12:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:12:25 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:12:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:12:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:12:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:12:33 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:12:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:13:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:13:16 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 10:13:16 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:15:44 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:15:44 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:19:45 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:19:45 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:23:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:23:46 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:27:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:27:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:31:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:31:48 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:32:23 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:32:23 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:32:51 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:33:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:33:34 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 10:35:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:35:43 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 10:35:49 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:35:49 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + + WARN  Files in the public directory are served at the root path. 10:35:49 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:38:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:38:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:38:34 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:39:50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:39:50 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 10:39:50 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:43:51 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:43:51 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:47:52 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:47:52 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:53:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:53:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:53:53 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 10:53:53 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:53:57 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:54:14 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:54:14 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 10:58:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:58:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 10:58:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:58:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:00:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:00:26 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:00:26 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:00:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:00:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:00:30 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:00:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:00:43 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 11:01:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:01:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + + WARN  Files in the public directory are served at the root path. 11:01:20 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:01:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:01:40 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:01:40 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:02:05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:02:05 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 11:02:06 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:02:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:02:44 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:02:44 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:02:57 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:02:57 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 11:02:57 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:03:02 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:04:28 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:04:28 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:04:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:04:34 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:05:14 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:05:14 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:05:15 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:05:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:05:29 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:05:29 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:05:50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:05:50 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 11:05:51 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:05:53 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:06:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:06:08 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:07:55 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:07:55 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 11:08:44 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:08:44 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + + WARN  Files in the public directory are served at the root path. 11:08:45 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:08:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:15:40 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:15:40 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:15:44 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:15:44 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 11:15:44 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:15:49 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:15:50 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:15:52 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:18:51 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:18:51 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:23:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:23:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 11:23:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:23:39 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 11:24:03 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:24:03 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 11:26:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:26:04 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + 11:28:07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:28:07 +Instead of /public/style/4nk.css, use /style/4nk.css. (x7) + + 11:28:14 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:28:14 +Instead of /public/style/4nk.css, use /style/4nk.css. (x8) + + + WARN  Files in the public directory are served at the root path. 11:28:14 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:28:16 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:49:02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:49:02 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:49:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:49:34 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 11:50:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:50:25 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 11:54:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:54:26 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 11:56:44 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:56:44 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + 12:00:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:00:45 +Instead of /public/style/4nk.css, use /style/4nk.css. (x7) + + 12:04:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:04:46 +Instead of /public/style/4nk.css, use /style/4nk.css. (x8) + + 12:08:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:08:47 +Instead of /public/style/4nk.css, use /style/4nk.css. (x9) + + 12:12:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:12:48 +Instead of /public/style/4nk.css, use /style/4nk.css. (x10) + + 12:16:49 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:16:49 +Instead of /public/style/4nk.css, use /style/4nk.css. (x11) + + 12:23:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:23:36 +Instead of /public/style/4nk.css, use /style/4nk.css. (x12) + + 12:29:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:29:23 +Instead of /public/style/4nk.css, use /style/4nk.css. (x13) + + 12:34:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:34:06 +Instead of /public/style/4nk.css, use /style/4nk.css. (x14) + + + WARN  Files in the public directory are served at the root path. 12:34:06 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:34:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:34:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:34:10 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 12:34:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:34:12 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 12:34:14 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:34:14 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 12:34:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:34:22 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 12:34:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:34:30 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + 12:34:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:34:41 +Instead of /public/style/4nk.css, use /style/4nk.css. (x7) + + 12:45:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:45:42 +Instead of /public/style/4nk.css, use /style/4nk.css. (x8) + + 12:49:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:49:43 +Instead of /public/style/4nk.css, use /style/4nk.css. (x9) + + 12:53:44 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:53:44 +Instead of /public/style/4nk.css, use /style/4nk.css. (x10) + + 12:57:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:57:45 +Instead of /public/style/4nk.css, use /style/4nk.css. (x11) + + 13:01:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:01:46 +Instead of /public/style/4nk.css, use /style/4nk.css. (x12) + + 13:05:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:05:46 +Instead of /public/style/4nk.css, use /style/4nk.css. (x13) + + 13:51:07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:51:07 +Instead of /public/style/4nk.css, use /style/4nk.css. (x14) + + + WARN  Files in the public directory are served at the root path. 13:51:07 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:55:07 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:55:08 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:56:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:56:56 [vite] page reload /home/ank/.bash_history 13:56:56 + + WARN  Files in the public directory are served at the root path. 13:56:56 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:56:57 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:00:57 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:00:57 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:04:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:04:59 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:08:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:09:00 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:13:01 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:13:01 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:17:01 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:17:02 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:21:02 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:21:02 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:24:52 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:25:03 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:25:03 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 14:25:03 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:26:34 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:28:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:28:10 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 14:29:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:29:04 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 14:29:05 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:32:56 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:33:05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:33:05 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 14:33:05 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:33:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:34:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:34:25 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 14:36:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:36:46 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 14:37:02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:37:02 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 14:37:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:37:06 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + + WARN  Files in the public directory are served at the root path. 14:37:07 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 14:39:33 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +14:39:33 [vite] page reload /home/ank/.ssh/authorized_keys 14:39:33 + + WARN  Files in the public directory are served at the root path. 14:39:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:39:33 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:39:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:39:49 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +14:39:49 [vite] page reload /home/ank/.ssh/authorized_keys 14:39:49 + + WARN  Files in the public directory are served at the root path. 14:39:49 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:39:49 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:39:49 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 14:39:49 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:40:44 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:43:50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:43:50 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 14:43:50 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:47:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:47:38 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:47:38 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 14:47:51 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:47:51 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 14:47:51 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:47:51 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + + WARN  Files in the public directory are served at the root path. 14:47:51 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:50:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:51:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:51:52 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 14:51:52 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:53:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:53:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:53:59 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 14:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:55:53 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 14:55:53 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:56:51 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:59:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:59:54 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 14:59:54 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:01:38 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:02:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:02:32 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 15:03:55 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:03:55 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 15:03:55 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:07:56 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:07:56 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:11:57 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:11:57 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:12:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:15:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:15:58 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 15:15:58 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:19:54 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:19:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:19:59 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 15:19:59 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:21:55 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:22:03 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:22:03 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 15:22:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:22:10 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 15:24:00 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:24:00 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + + WARN  Files in the public directory are served at the root path. 15:24:00 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:28:01 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:28:01 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:31:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:32:02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:32:02 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 15:32:02 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:36:03 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:36:03 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:40:04 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:40:04 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:43:14 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:44:05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:44:05 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 15:44:05 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:48:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:48:06 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:52:07 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:52:07 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:56:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:56:08 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 16:00:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:00:09 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 16:04:10 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:04:10 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:08:11 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:08:11 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 16:12:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:12:12 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 16:43:49 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. 09:51:43 + + + WARN  Files in the public directory are served at the root path. 09:59:49 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 09:59:50 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:00:01 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:00:01 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:00:03 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:00:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:00:58 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 10:01:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:01:11 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 10:01:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:01:32 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 10:01:49 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:01:49 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 10:03:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:03:32 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + 10:06:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:06:37 +Instead of /public/style/4nk.css, use /style/4nk.css. (x7) + + + WARN  Files in the public directory are served at the root path. 10:06:37 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:06:39 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:06:39 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:06:44 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:06:44 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:06:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:07:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:07:22 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 10:07:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:07:23 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 10:10:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:10:36 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 10:12:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:12:09 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 10:13:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:13:48 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + 10:13:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:13:53 +Instead of /public/style/4nk.css, use /style/4nk.css. (x7) + + 10:13:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:13:54 +Instead of /public/style/4nk.css, use /style/4nk.css. (x8) + + 10:15:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:15:58 +Instead of /public/style/4nk.css, use /style/4nk.css. (x9) + + 10:21:51 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:21:51 +Instead of /public/style/4nk.css, use /style/4nk.css. (x10) + + 10:21:57 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:21:57 +Instead of /public/style/4nk.css, use /style/4nk.css. (x11) + + 10:22:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:22:04 +Instead of /public/style/4nk.css, use /style/4nk.css. (x12) + + 10:22:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:22:08 +Instead of /public/style/4nk.css, use /style/4nk.css. (x13) + + 10:23:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:23:23 +Instead of /public/style/4nk.css, use /style/4nk.css. (x14) + + 10:26:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:26:30 +Instead of /public/style/4nk.css, use /style/4nk.css. (x15) + + 10:28:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:28:26 +Instead of /public/style/4nk.css, use /style/4nk.css. (x16) + + 10:28:27 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:28:27 +Instead of /public/style/4nk.css, use /style/4nk.css. (x17) + + 10:33:57 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:33:57 +Instead of /public/style/4nk.css, use /style/4nk.css. (x18) + + 10:33:57 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:33:57 +Instead of /public/style/4nk.css, use /style/4nk.css. (x19) + + 10:35:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:35:36 +Instead of /public/style/4nk.css, use /style/4nk.css. (x20) + + 10:40:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:40:30 +Instead of /public/style/4nk.css, use /style/4nk.css. (x21) + + 10:59:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:59:11 [vite] page reload src/services/service.ts 10:59:11 + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:59:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:59:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:59:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:59:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:59:32 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:17:33 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:17:33 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 11:21:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:21:34 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 11:25:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:25:35 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 11:29:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:29:36 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + 11:33:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:33:37 +Instead of /public/style/4nk.css, use /style/4nk.css. (x7) + + 11:37:38 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:37:38 +Instead of /public/style/4nk.css, use /style/4nk.css. (x8) + + 11:41:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:41:39 +Instead of /public/style/4nk.css, use /style/4nk.css. (x9) + + 11:45:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:45:16 +Instead of /public/style/4nk.css, use /style/4nk.css. (x10) + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:46:22 [vite] page reload src/services/service.ts 11:46:22 + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:46:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:46:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:46:22 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:46:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:46:39 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:51:07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:51:07 [vite] page reload src/services/service.ts 11:51:07 + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:51:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:51:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:51:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:51:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:51:45 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:53:58 [vite] page reload src/services/service.ts 11:53:58 + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:53:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:53:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:53:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:54:08 [vite] page reload src/services/service.ts 11:54:08 + + WARN  Files in the public directory are served at the root path. 11:54:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:54:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:54:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 12:12:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 13:38:02 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:38:02 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 13:38:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:38:04 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 13:40:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:40:39 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 13:42:49 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:42:49 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + + ERROR  The request url "/home/ank/dev/ihm_client_dev3/.env" is outside of Vite serving allow list. 14:06:46 + + + WARN  Files in the public directory are served at the root path. 14:12:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:13:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:13:24 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 14:33:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:33:18 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 14:33:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:33:21 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:33:27 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:33:27 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 14:33:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:33:39 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 14:33:39 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:33:44 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:33:44 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:33:58 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:33:58 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:34:31 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:53:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:53:42 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 14:53:43 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:53:51 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:53:51 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:53:55 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 14:54:00 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:54:00 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 14:54:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:54:04 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 14:59:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:59:11 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 14:59:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 14:59:39 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 15:00:50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:00:50 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + 15:03:44 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:03:44 +Instead of /public/style/4nk.css, use /style/4nk.css. (x7) + + 15:03:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:03:53 +Instead of /public/style/4nk.css, use /style/4nk.css. (x8) + + 15:04:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:04:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x9) + + 15:04:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:04:35 +Instead of /public/style/4nk.css, use /style/4nk.css. (x10) + + 15:06:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:06:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x11) + + 15:09:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:09:30 +Instead of /public/style/4nk.css, use /style/4nk.css. (x12) + + 15:09:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:09:32 +Instead of /public/style/4nk.css, use /style/4nk.css. (x13) + + 15:11:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:11:18 +Instead of /public/style/4nk.css, use /style/4nk.css. (x14) + + 15:11:33 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:11:33 +Instead of /public/style/4nk.css, use /style/4nk.css. (x15) + + 15:11:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:11:47 +Instead of /public/style/4nk.css, use /style/4nk.css. (x16) + + 15:12:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:12:06 +Instead of /public/style/4nk.css, use /style/4nk.css. (x17) + + 15:16:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:16:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x18) + + 15:16:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:16:20 +Instead of /public/style/4nk.css, use /style/4nk.css. (x19) + + 15:16:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:16:24 +Instead of /public/style/4nk.css, use /style/4nk.css. (x20) + + 15:20:57 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:20:57 +Instead of /public/style/4nk.css, use /style/4nk.css. (x21) + + + WARN  Files in the public directory are served at the root path. 15:20:57 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:21:05 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:21:05 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:21:10 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:21:11 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:21:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:21:44 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:21:44 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 15:21:44 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:21:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:21:59 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:22:19 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:22:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:22:26 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:22:27 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:22:30 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:22:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:22:42 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 15:22:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:22:48 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 15:23:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:23:20 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 15:23:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:23:22 +Instead of /public/style/4nk.css, use /style/4nk.css. (x5) + + 15:26:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:26:09 +Instead of /public/style/4nk.css, use /style/4nk.css. (x6) + + + WARN  Files in the public directory are served at the root path. 15:26:09 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:26:26 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:26:26 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:26:57 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:27:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:27:12 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 15:27:29 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:27:29 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 15:27:29 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:29:19 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:31:28 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:31:28 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 15:31:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:31:30 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 15:31:30 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:33:04 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:35:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:35:31 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 15:35:31 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:37:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:37:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:37:32 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 15:37:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:37:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:37:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:37:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:37:59 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:00 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:01 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:01 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:01 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:08 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:13 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:13 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:19 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:23 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:23 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:23 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:23 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:27 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:27 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:29 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:29 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:30 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:30 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:30 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:30 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:31 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:31 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:33 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:34 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:34 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:35 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:35 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:38:39 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:38:39 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:39:01 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:01 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:05 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:05 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:39:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:08 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:39:29 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:29 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:39:31 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:31 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:39:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:39:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:33 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:39:34 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:39:34 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:40:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:40:13 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:40:28 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:40:28 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:40:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:40:59 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:41:04 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:41:04 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:41:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:41:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:41:08 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 15:41:13 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:41:13 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 15:44:29 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:44:29 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + + WARN  Files in the public directory are served at the root path. 15:44:29 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:45:40 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 15:45:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:45:43 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 15:48:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 15:48:30 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + + WARN  Files in the public directory are served at the root path. 15:48:30 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:49:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:49:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:49:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:49:27 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:50:00 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:50:01 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:50:38 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:50:38 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 15:52:57 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 15:52:57 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 16:12:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:12:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:55:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 16:55:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 17:10:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 17:10:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 17:38:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 17:38:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:46:19 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:46:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:46:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:46:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:46:44 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:46:50 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:46:50 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 10:46:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:46:56 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 10:46:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:46:58 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 10:48:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:48:36 [vite] page reload src/utils/sp-address.utils.ts 10:48:36 + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:48:37 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:48:37 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 168 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:48:37 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:48:37 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:48:37 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:52:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 10:52:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 10:52:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:52:38 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:55:48 [vite] page reload src/utils/sp-address.utils.ts 10:55:48 + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:55:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:55:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 168 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:55:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:55:49 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:55:49 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:56:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:56:47 [vite] page reload src/services/service.ts 10:56:47 + + WARN  Files in the public directory are served at the root path. 10:56:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:56:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:56:48 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 168 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:56:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 10:56:48 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 10:57:07 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:57:07 [vite] page reload src/services/service.ts 10:57:07 + + WARN  Files in the public directory are served at the root path. 10:57:07 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:57:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 168 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:57:08 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:57:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:57:38 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:57:38 [vite] page reload src/utils/sp-address.utils.ts 10:57:38 + + WARN  Files in the public directory are served at the root path. 10:57:38 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:57:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:57:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 169 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:57:39 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:57:39 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:58:05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:58:05 [vite] page reload src/utils/sp-address.utils.ts 10:58:05 + + WARN  Files in the public directory are served at the root path. 10:58:05 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 170 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:58:06 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:58:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:58:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +10:58:25 [vite] page reload src/services/service.ts 10:58:25 + + WARN  Files in the public directory are served at the root path. 10:58:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 10:58:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  10:58:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 170 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 10:58:26 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 10:58:26 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:02:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:02:26 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:02:26 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:02:27 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:07:28 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:07:28 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:07:55 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:07:55 [vite] page reload src/utils/sp-address.utils.ts 11:07:55 + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:07:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:07:56 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 11:07:56 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:07:56 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:07:56 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:08:17 [vite] page reload src/utils/sp-address.utils.ts 11:08:17 + + WARN  Files in the public directory are served at the root path. 11:08:17 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:17 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 170 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:08:17 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:08:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:08:32 [vite] page reload src/utils/sp-address.utils.ts 11:08:32 + + WARN  Files in the public directory are served at the root path. 11:08:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 169 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:08:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:08:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:40 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:08:40 [vite] page reload src/utils/sp-address.utils.ts 11:08:40 + + WARN  Files in the public directory are served at the root path. 11:08:40 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 167 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:08:41 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:08:41 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:08:45 [vite] page reload src/utils/sp-address.utils.ts 11:08:45 + + WARN  Files in the public directory are served at the root path. 11:08:45 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:08:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:08:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:08:45 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:08:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:09:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:09:20 [vite] page reload src/services/service.ts 11:09:20 + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:09:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:09:22 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:09:22 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:09:22 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:09:22 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:13:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:13:23 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:17:21 [vite] page reload src/services/service.ts 11:17:21 + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:17:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:21 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:17:21 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:17:21 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:17:22 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:17:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:17:30 [vite] page reload src/utils/sp-address.utils.ts 11:17:30 + + WARN  Files in the public directory are served at the root path. 11:17:30 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:17:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:17:31 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 11:17:31 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:17:31 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:18:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:18:11 [vite] page reload src/services/service.ts 11:18:11 + + WARN  Files in the public directory are served at the root path. 11:18:11 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:18:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:12 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 11:18:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:18:12 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:18:20 [vite] page reload src/services/service.ts 11:18:20 + + WARN  Files in the public directory are served at the root path. 11:18:20 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:18:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:20 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 11:18:20 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:18:20 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:18:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:18:23 [vite] page reload src/utils/sp-address.utils.ts 11:18:23 + + WARN  Files in the public directory are served at the root path. 11:18:23 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:18:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:18:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:18:24 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:18:24 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:20:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:20:24 [vite] page reload src/services/service.ts 11:20:24 + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS18048: 'process' is possibly 'undefined'. 11:20:25 + + 233 if (process.states.length < 2) { +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS18048: 'process' is possibly 'undefined'. 11:20:25 + + 238 roles = process.states[process.states.length - 2].roles; +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS18048: 'process' is possibly 'undefined'. 11:20:25 + + 238 roles = process.states[process.states.length - 2].roles; +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS18048: 'process' is possibly 'undefined'. 11:20:25 + + 240 roles = process.states.find(state => state.state_id === stateId)?.roles || null; +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS18048: 'process' is possibly 'undefined'. 11:20:25 + + 259 const publicData = process.states[0]?.public_data; +    ~~~~~~~ +  + + 11:20:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:20:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:20:26 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:20:26 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:20:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:20:42 [vite] page reload src/services/service.ts 11:20:42 + + WARN  Files in the public directory are served at the root path. 11:20:42 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:20:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:20:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:20:43 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:20:43 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 11:21:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:21:11 [vite] page reload src/services/service.ts 11:21:11 + + WARN  Files in the public directory are served at the root path. 11:21:11 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:12 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:21:12 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:21:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:21:23 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:21:23 [vite] page reload src/services/service.ts 11:21:23 + + WARN  Files in the public directory are served at the root path. 11:21:23 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:21:24 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:21:24 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 11:21:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:21:34 [vite] page reload src/services/service.ts 11:21:34 + + WARN  Files in the public directory are served at the root path. 11:21:35 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:21:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:21:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:21:35 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:21:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:24:57 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:24:57 [vite] page reload src/utils/sp-address.utils.ts 11:24:57 + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Promise' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'Promise' but required in type 'Process'. + + 166 await service.checkConnections(service.getProcess(), service.getStateId()); +    ~~~~~~~~~~~~~~~~~~~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + 11:24:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:24:58 [vite] warning: @rollup/plugin-typescript TS2554: Expected 1 arguments, but got 0. 11:24:58 + + 166 await service.checkConnections(service.getProcess(), service.getStateId()); +    ~~~~~~~~~~ + + src/services/service.ts:1122:27 + 1122 public async getProcess(processId: string): Promise { +    ~~~~~~~~~~~~~~~~~ + An argument for 'processId' was not provided. +  + + + WARN  Files in the public directory are served at the root path. 11:24:58 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:24:58 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:24:58 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:25:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:25:17 [vite] page reload src/utils/sp-address.utils.ts 11:25:17 + + WARN  Files in the public directory are served at the root path. 11:25:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:25:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:25:18 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:25:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:29:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:29:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:29:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:29:20 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:33:16 [vite] page reload src/utils/sp-address.utils.ts 11:33:16 + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:33:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:33:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'UpdatedProcess' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'UpdatedProcess' but required in type 'Process'. + + 182 await service.checkConnections(createPairingProcessReturn.updated_process); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:33:17 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:33:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:33:17 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:33:17 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:34:11 [vite] page reload src/utils/sp-address.utils.ts 11:34:11 + + WARN  Files in the public directory are served at the root path. 11:34:11 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:34:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:11 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'UpdatedProcess' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'UpdatedProcess' but required in type 'Process'. + + 183 await service.checkConnections(createPairingProcessReturn.updated_process); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:34:11 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:34:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:34:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:34:46 [vite] page reload src/utils/sp-address.utils.ts 11:34:46 + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:34:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:34:47 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 11:34:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:34:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:34:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:35:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +11:35:52 [vite] page reload src/utils/sp-address.utils.ts 11:35:52 + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 11:35:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  11:35:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'never[]' is not assignable to parameter of type 'Process'. + Property 'states' is missing in type 'never[]' but required in type 'Process'. + + 166 await service.checkConnections([]); +    ~~ + + pkg/sdk_client.d.ts:237:5 + 237 states: ProcessState[]; +    ~~~~~~ + 'states' is declared here. +  + + + WARN  Files in the public directory are served at the root path. 11:35:53 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 11:35:53 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:35:53 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:43:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:43:46 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 11:53:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:53:17 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 11:53:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:53:24 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + + WARN  Files in the public directory are served at the root path. 11:53:24 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 11:57:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 11:57:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 11:57:25 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 11:57:25 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:00:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:00:08 [vite] page reload src/utils/sp-address.utils.ts 12:00:08 + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:00:09 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:00:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:00:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:00:09 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:00:09 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:04:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:04:35 [vite] page reload src/services/service.ts 12:04:35 + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:04:36 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:04:36 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:04:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 12:04:36 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:04:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:06:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:06:17 [vite] page reload src/services/service.ts 12:06:17 + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:06:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:06:18 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:06:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 12:06:18 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:06:19 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:10:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:10:19 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:10:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:10:20 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:12:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:12:47 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:12:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:14:20 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 12:14:20 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:14:21 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:16:32 [vite] page reload src/services/service.ts 12:16:32 + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:16:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:32 [vite] warning: @rollup/plugin-typescript TS2322: Type 'number[]' is not assignable to type 'string[]'. + Type 'number' is not assignable to type 'string'. + + 268 members.add({ sp_addresses: pairedAddresses }); +    ~~~~~~~~~~~~ + + pkg/sdk_client.d.ts:217:5 + 217 sp_addresses: string[]; +    ~~~~~~~~~~~~ + The expected type comes from property 'sp_addresses' which is declared here on type 'Member' +  + + + WARN  Files in the public directory are served at the root path. 12:16:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:16:33 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:16:33 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:16:33 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:16:38 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:16:38 [vite] page reload src/services/service.ts 12:16:38 + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:16:39 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:16:39 [vite] warning: @rollup/plugin-typescript TS2322: Type 'number[]' is not assignable to type 'string[]'. + Type 'number' is not assignable to type 'string'. + + 268 members.add({ sp_addresses: pairedAddresses }); +    ~~~~~~~~~~~~ + + pkg/sdk_client.d.ts:217:5 + 217 sp_addresses: string[]; +    ~~~~~~~~~~~~ + The expected type comes from property 'sp_addresses' which is declared here on type 'Member' +  + + + WARN  Files in the public directory are served at the root path. 12:16:40 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:16:40 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:16:40 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:16:40 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:19:41 [vite] page reload src/services/service.ts 12:19:41 + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:19:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:41 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:19:42 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:19:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:19:42 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:19:42 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:19:47 [vite] page reload src/services/service.ts 12:19:47 + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:19:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:19:47 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:19:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:19:48 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:19:48 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:19:48 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:21:08 [vite] page reload src/services/service.ts 12:21:08 + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:21:08 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:08 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:21:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:21:09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:21:09 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:21:09 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:21:16 [vite] page reload src/services/service.ts 12:21:16 + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:21:16 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:21:16 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:21:17 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:21:17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:21:17 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:21:17 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:25:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:25:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:25:18 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:25:18 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:26:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 12:26:48 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:29:19 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:33:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:33:20 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + 12:37:21 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:37:21 +Instead of /public/style/4nk.css, use /style/4nk.css. (x3) + + 12:41:22 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:41:22 +Instead of /public/style/4nk.css, use /style/4nk.css. (x4) + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:44:24 [vite] page reload src/services/service.ts 12:44:24 + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:44:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:24 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:44:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:44:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:44:25 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:44:25 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:44:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:44:30 [vite] page reload src/services/service.ts 12:44:30 + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:44:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:44:31 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:44:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:44:32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:44:32 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:44:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:48:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 12:48:33 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:48:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:48:46 [vite] page reload src/services/service.ts 12:48:46 + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:48:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:48:46 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:48:47 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:48:47 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:48:47 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:48:47 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:49:10 [vite] page reload src/services/service.ts 12:49:10 + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:49:10 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:10 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:49:11 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:49:11 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:49:11 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:49:11 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:49:41 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:49:41 [vite] page reload src/services/service.ts 12:49:41 + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:42 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:49:42 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:49:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:49:42 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:49:42 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:49:52 [vite] page reload src/services/service.ts 12:49:52 + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:49:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:49:52 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:49:53 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:49:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:49:53 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:49:53 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 12:54:24 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:55:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:55:24 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:55:24 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:55:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:55:52 [vite] page reload src/services/service.ts 12:55:52 + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:53 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:55:53 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:55:53 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:55:53 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:55:53 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:55:58 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:55:58 [vite] page reload src/router.ts 12:55:58 + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:55:59 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:55:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:55:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:55:59 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:55:59 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:56:05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:56:05 [vite] page reload src/services/service.ts 12:56:05 + 12:56:05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:56:05 [vite] page reload src/router.ts 12:56:05 + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:56:06 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:56:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:56:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:56:06 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:56:06 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:59:30 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:59:30 [vite] page reload src/services/service.ts 12:59:30 + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:31 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 12:59:31 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 12:59:31 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 12:59:31 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 12:59:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +12:59:59 [vite] page reload src/services/service.ts 12:59:59 + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 12:59:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  12:59:59 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:00:00 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 13:00:00 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:00:00 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 13:00:00 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + +Sending Request: GET /storage,https:/backup.4nkweb.com/storage 13:01:26 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:01:26 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:01:26 +Sending Request: GET /storage,https://backup.4nkweb.com/storage (repeated 4216 times) 13:01:26 + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:02:24 [vite] page reload src/services/service.ts 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage (repeated 15 times) 13:02:24 + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:02:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:02:24 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:24 +Sending Request: GET /storage,https://backup.4nkweb.com/storage (repeated 18 times) 13:02:24 + + WARN  Files in the public directory are served at the root path. 13:02:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage (repeated 3 times) 13:02:25 + 13:02:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:02:25 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 + + WARN  Files in the public directory are served at the root path. 13:02:25 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:25 +Sending Request: GET /storage,https://backup.4nkweb.com/storage (repeated 125 times) 13:02:25 +Received Response: 502 /storage,https:/backup.4nkweb.com/storage 13:02:26 +Sending Request: GET /storage,https://backup.4nkweb.com/storage 13:02:26 +Received Response: 504 /storage,https://backup.4nkweb.com/storage 13:02:26 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:26 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:26 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:26 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:26 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:26 +Received Response: 502 /storage,https://backup.4nkweb.com/storage (repeated 909 times) 13:02:26 +Received Response: 504 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage (repeated 1070 times) 13:02:27 +Received Response: 504 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage (repeated 991 times) 13:02:27 +Received Response: 504 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:27 +Received Response: 502 /storage,https://backup.4nkweb.com/storage (repeated 833 times) 13:02:27 +Received Response: 504 /storage,https://backup.4nkweb.com/storage 13:02:28 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:28 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:28 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:28 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:28 +Received Response: 502 /storage,https://backup.4nkweb.com/storage 13:02:28 +Received Response: 502 /storage,https://backup.4nkweb.com/storage (repeated 568 times) 13:02:28 + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:03:04 [vite] page reload src/services/service.ts 13:03:04 + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:03:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:03:04 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 910 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:03:05 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 13:03:05 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  Files in the public directory are served at the root path. 13:03:05 +Instead of /public/style/4nk.css, use /style/4nk.css. (x2) + + + WARN  Files in the public directory are served at the root path. 13:03:05 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:07:17 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:07:17 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:17:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:18:00 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:19:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:19:19 [vite] page reload src/router.ts 13:19:19 + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2339: Property 'waitForPairingCommitment' does not exist on type 'Services'. + + 290 await services.waitForPairingCommitment(pairingId); +    ~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:19:20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:20 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:19:20 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:19:20 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:19:24 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:19:24 [vite] page reload src/services/service.ts 13:19:24 + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:19:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:25 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:19:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:19:25 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:19:34 [vite] page reload src/services/service.ts 13:19:34 + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:19:34 [vite] page reload src/router.ts 13:19:34 + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:19:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:19:34 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:19:35 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:19:35 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:23:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:23:36 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:23:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:23:45 [vite] page reload src/utils/sp-address.utils.ts 13:23:45 + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:23:46 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:46 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:23:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:23:46 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:23:54 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:23:54 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:23:59 [vite] page reload src/utils/sp-address.utils.ts 13:23:59 + + WARN  Files in the public directory are served at the root path. 13:23:59 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:23:59 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:23:59 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:23:59 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:25:45 [vite] page reload src/utils/sp-address.utils.ts 13:25:45 + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:25:45 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:45 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:25:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:25:46 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:25:54 [vite] page reload src/utils/sp-address.utils.ts 13:25:54 + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:25:54 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:25:54 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:25:55 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:25:55 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:27:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:27:06 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:27:18 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:27:18 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:30:39 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:30:39 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:30:50 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:30:51 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:32:42 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:32:42 [vite] page reload src/router.ts 13:32:42 + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:32:43 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:43 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 916 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:32:43 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:32:43 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:32:51 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:32:51 [vite] page reload src/services/service.ts 13:32:51 + + WARN  Files in the public directory are served at the root path. 13:32:52 +Instead of /public/style/4nk.css, use /style/4nk.css. + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:32:52 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:32:52 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 916 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:32:52 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:33:03 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:33:03 [vite] page reload src/router.ts 13:33:03 + 13:33:03 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:33:03 [vite] page reload src/services/service.ts 13:33:03 + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:33:04 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:33:04 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 916 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:33:04 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:33:04 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:34:14 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:34:14 [vite] page reload src/services/service.ts 13:34:14 + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:34:15 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:34:15 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 916 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:34:16 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:34:16 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:36:36 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:36:36 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:38:24 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:38:24 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:42:25 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:42:25 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:46:26 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:46:26 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:47:18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:47:18 [vite] page reload src/services/service.ts 13:47:18 + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:47:19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:19 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 916 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:47:19 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:47:19 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:47:25 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:47:25 [vite] page reload src/router.ts 13:47:25 + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:47:26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:26 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:47:26 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:47:26 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:47:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:47:34 [vite] page reload src/services/service.ts 13:47:34 + 13:47:34 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:47:34 [vite] page reload src/router.ts 13:47:34 + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:47:35 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:47:35 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + + WARN  Files in the public directory are served at the root path. 13:47:35 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:47:35 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:50:49 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:50:49 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:51:09 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:51:09 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:51:29 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:51:29 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:51:33 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:51:34 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:51:48 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:51:48 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:52:08 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:52:08 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 13:52:12 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:52:12 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:57:56 [vite] page reload src/services/service.ts 13:57:56 + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS18046: 'e' is of type 'unknown'. 13:57:56 + + 787 console.log(`⚠️ Device update failed on attempt ${i + 1} (process may not be committed yet): ${e.message}`); +    ~ +  + + 13:57:56 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:57:56 [vite] warning: @rollup/plugin-typescript TS18046: 'e' is of type 'unknown'. 13:57:56 + + 803 console.log(`❌ Attempt ${i + 1}/${maxRetries}: Error during synchronization - ${e.message}`); +    ~ +  + + + WARN  Files in the public directory are served at the root path. 13:57:57 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:57:57 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +13:58:06 [vite] page reload src/services/service.ts 13:58:06 + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 802 await service.updateMemberPublicName(process, newValue); +    ~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 861 const lastState = service.getLastCommitedState(process); +    ~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 870 const publicData = await service.getPublicData(process); +    ~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type '(h: string) => string' is not assignable to parameter of type '(value: unknown, index: number, array: unknown[]) => string'. + Types of parameters 'h' and 'value' are incompatible. + Type 'unknown' is not assignable to type 'string'. + + 174 state.commitmentHashes = Object.values(json.pcd_commitment).map((h: string) => +    ~~~~~~~~~~~~~~ + 175 h.toLowerCase() +   ~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2339: Property 'process_id' does not exist on type 'ProcessState'. + + 209 const processId = state.certificate.process_id; +    ~~~~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2345: Argument of type 'Process | null' is not assignable to parameter of type 'Process'. + Type 'null' is not assignable to type 'Process'. + + 58 let newState = service.getStateFromId(process, stateId); +    ~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2322: Type 'Blob | null' is not assignable to type 'BlobPart'. + Type 'null' is not assignable to type 'BlobPart'. + + 65 const blob = new Blob([encryptedData], { type: "application/octet-stream" }); +    ~~~~~~~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2339: Property 'generateProcessPdf' does not exist on type 'Services'. + + 74 await service.generateProcessPdf(processId, newState); +    ~~~~~~~~~~~~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS7053: Element implicitly has an 'any' type because expression of type '"process_id"' can't be used to index type 'ProcessState'. + Property 'process_id' does not exist on type 'ProcessState'. + + 77 newState['process_id'] = processId; +    ~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS2304: Cannot find name 'handleCreateConversationProcess'. + + 913 await handleCreateConversationProcess(event); +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS18046: 'e' is of type 'unknown'. 13:58:06 + + 787 console.log(`⚠️ Device update failed on attempt ${i + 1} (process may not be committed yet): ${e.message}`); +    ~ +  + + 13:58:06 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARN  13:58:06 [vite] warning: @rollup/plugin-typescript TS18046: 'e' is of type 'unknown'. 13:58:06 + + 803 console.log(`❌ Attempt ${i + 1}/${maxRetries}: Error during synchronization - ${e.message}`); +    ~ +  + + + WARN  Files in the public directory are served at the root path. 13:58:07 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 13:58:07 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:07:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:07:46 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:09:32 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:09:32 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:09:44 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:09:44 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:10:02 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:10:02 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + + + WARN  Files in the public directory are served at the root path. 14:12:34 +Instead of /public/style/4nk.css, use /style/4nk.css. + + + WARN  Files in the public directory are served at the root path. 14:12:36 +Instead of /public/assets/bgd.webp, use /assets/bgd.webp. + diff --git a/src/models/process.model.ts b/src/models/process.model.ts index b2eae72..8f47f03 100755 --- a/src/models/process.model.ts +++ b/src/models/process.model.ts @@ -46,6 +46,8 @@ export enum MessageType { // Processes CREATE_PROCESS = 'CREATE_PROCESS', PROCESS_CREATED = 'PROCESS_CREATED', + CREATE_CONVERSATION = 'CREATE_CONVERSATION', + CONVERSATION_CREATED = 'CONVERSATION_CREATED', UPDATE_PROCESS = 'UPDATE_PROCESS', PROCESS_UPDATED = 'PROCESS_UPDATED', NOTIFY_UPDATE = 'NOTIFY_UPDATE', diff --git a/src/router.ts b/src/router.ts index d5fccd9..37b096b 100755 --- a/src/router.ts +++ b/src/router.ts @@ -148,7 +148,7 @@ export async function init(): Promise { } else { services.restoreDevice(device); } - + // If we create a new device, we most probably don't have anything in db, but just in case await services.restoreProcessesFromDB(); await services.restoreSecretsFromDB(); @@ -176,10 +176,10 @@ export async function registerAllListeners() { const services = await Services.getInstance(); const tokenService = await TokenService.getInstance(); - const errorResponse = (errorMsg: string, origin: string, messageId?: string) => { + const errorResponse = (errorMsg: string, origin: string, messageId?: string) => { window.parent.postMessage( - { - type: MessageType.ERROR, + { + type: MessageType.ERROR, error: errorMsg, messageId }, @@ -213,9 +213,9 @@ export async function registerAllListeners() { } try { - const tokens = await tokenService.generateSessionToken(event.origin); + const tokens = await tokenService.generateSessionToken(event.origin); const acceptedMsg = { - type: MessageType.LINK_ACCEPTED, + type: MessageType.LINK_ACCEPTED, accessToken: tokens.accessToken, refreshToken: tokens.refreshToken, messageId: event.data.messageId @@ -234,63 +234,66 @@ export async function registerAllListeners() { if (event.data.type !== MessageType.CREATE_PAIRING) { return; } - + console.log("📨 [Router] Received CREATE_PAIRING request"); - + if (services.isPaired()) { const errorMsg = "⚠️ Device already paired — ignoring CREATE_PAIRING request"; console.warn(errorMsg); errorResponse(errorMsg, event.origin, event.data.messageId); return; } - + try { const { accessToken } = event.data; - + console.log("🔐 Checking access token validity..."); const validToken = accessToken && (await tokenService.validateToken(accessToken, event.origin)); - + if (!validToken) { throw new Error("❌ Invalid or expired session token"); } - + console.log("✅ Token validated successfully"); console.log("🚀 Starting pairing process"); - + const myAddress = services.getDeviceAddress(); console.log("📍 Device address:", myAddress); - + console.log("🧱 Creating pairing process..."); const createPairingProcessReturn = await services.createPairingProcess("", [myAddress]); console.log("🧾 Pairing process created:", createPairingProcessReturn); - + const pairingId = createPairingProcessReturn.updated_process?.process_id; const stateId = createPairingProcessReturn.updated_process?.current_process?.states[0]?.state_id as string; - + console.log("🔗 Pairing ID:", pairingId); console.log("🧩 State ID:", stateId); - + console.log("🔒 Registering device as paired..."); services.pairDevice(pairingId, [myAddress]); - + console.log("🧠 Handling API return for createPairingProcess..."); await services.handleApiReturn(createPairingProcessReturn); - + console.log("🧰 Creating PRD update..."); const createPrdUpdateReturn = await services.createPrdUpdate(pairingId, stateId); console.log("🧾 PRD update result:", createPrdUpdateReturn); await services.handleApiReturn(createPrdUpdateReturn); - + console.log("✅ Approving change..."); const approveChangeReturn = await services.approveChange(pairingId, stateId); console.log("📜 Approve change result:", approveChangeReturn); await services.handleApiReturn(approveChangeReturn); - + + console.log("⏳ Waiting for pairing process to be committed..."); + await services.waitForPairingCommitment(pairingId); + console.log("🔁 Confirming pairing..."); - await services.confirmPairing(); - + await services.confirmPairing(pairingId); + console.log("🎉 Pairing successfully completed!"); - + // ✅ Send success response to frontend const successMsg = { type: MessageType.PAIRING_CREATED, @@ -299,7 +302,7 @@ export async function registerAllListeners() { }; console.log("📤 Sending PAIRING_CREATED message to UI:", successMsg); window.parent.postMessage(successMsg, event.origin); - + } catch (e) { const errorMsg = `❌ Failed to create pairing process: ${e}`; console.error(errorMsg); @@ -326,9 +329,9 @@ export async function registerAllListeners() { } const myProcesses = await services.getMyProcesses(); - + window.parent.postMessage( - { + { type: MessageType.GET_MY_PROCESSES, myProcesses, messageId: event.data.messageId @@ -339,8 +342,8 @@ export async function registerAllListeners() { const errorMsg = `Failed to get processes: ${e}`; errorResponse(errorMsg, event.origin, event.data.messageId); } - } - + } + const handleGetProcesses = async (event: MessageEvent) => { if (event.data.type !== MessageType.GET_PROCESSES) { return; @@ -363,9 +366,9 @@ export async function registerAllListeners() { } const processes = await services.getProcesses(); - + window.parent.postMessage( - { + { type: MessageType.PROCESSES_RETRIEVED, processes, messageId: event.data.messageId @@ -376,7 +379,7 @@ export async function registerAllListeners() { const errorMsg = `Failed to get processes: ${e}`; errorResponse(errorMsg, event.origin, event.data.messageId); } - } + } /// We got a state for some process and return as many clear attributes as we can const handleDecryptState = async (event: MessageEvent) => { @@ -424,7 +427,7 @@ export async function registerAllListeners() { } window.parent.postMessage( - { + { type: MessageType.DATA_RETRIEVED, data: res, messageId: event.data.messageId @@ -466,23 +469,23 @@ export async function registerAllListeners() { if (event.data.type !== MessageType.RENEW_TOKEN) { return; } - + try { const refreshToken = event.data.refreshToken; - + if (!refreshToken) { throw new Error('No refresh token provided'); } - + const newAccessToken = await tokenService.refreshAccessToken(refreshToken, event.origin); - + if (!newAccessToken) { throw new Error('Failed to refresh token'); } - + window.parent.postMessage( - { - type: MessageType.RENEW_TOKEN, + { + type: MessageType.RENEW_TOKEN, accessToken: newAccessToken, refreshToken: refreshToken, messageId: event.data.messageId @@ -512,9 +515,9 @@ export async function registerAllListeners() { } const userPairingId = services.getPairingProcessId(); - + window.parent.postMessage( - { + { type: MessageType.GET_PAIRING_ID, userPairingId, messageId: event.data.messageId @@ -561,7 +564,7 @@ export async function registerAllListeners() { } window.parent.postMessage( - { + { type: MessageType.PROCESS_CREATED, processCreated: res, messageId: event.data.messageId @@ -598,7 +601,7 @@ export async function registerAllListeners() { await services.handleApiReturn(res); window.parent.postMessage( - { + { type: MessageType.UPDATE_NOTIFIED, messageId: event.data.messageId }, @@ -630,7 +633,7 @@ export async function registerAllListeners() { await services.handleApiReturn(res); window.parent.postMessage( - { + { type: MessageType.STATE_VALIDATED, validatedProcess: res.updated_process, messageId: event.data.messageId @@ -642,7 +645,7 @@ export async function registerAllListeners() { errorResponse(errorMsg, event.origin, event.data.messageId); } } - + const handleUpdateProcess = async (event: MessageEvent) => { if (event.data.type !== MessageType.UPDATE_PROCESS) return; @@ -734,12 +737,12 @@ export async function registerAllListeners() { } // We'll let the wasm check if roles are consistent - + const res = await services.updateProcess(process, privateData, publicData, roles); await services.handleApiReturn(res); window.parent.postMessage( - { + { type: MessageType.PROCESS_UPDATED, updatedProcess: res.updated_process, messageId: event.data.messageId @@ -767,11 +770,11 @@ export async function registerAllListeners() { if (!accessToken || !(await tokenService.validateToken(accessToken, event.origin))) { throw new Error('Invalid or expired session token'); } - + const decodedData = services.decodeValue(encodedData); window.parent.postMessage( - { + { type: MessageType.PUBLIC_DATA_DECODED, decodedData, messageId: event.data.messageId @@ -795,11 +798,11 @@ export async function registerAllListeners() { if (!accessToken || !(await tokenService.validateToken(accessToken, event.origin))) { throw new Error('Invalid or expired session token'); } - + const hash = services.getHashForFile(commitedIn, label, fileBlob); window.parent.postMessage( - { + { type: MessageType.VALUE_HASHED, hash, messageId: event.data.messageId @@ -825,7 +828,7 @@ export async function registerAllListeners() { const proof = services.getMerkleProofForFile(processState, attributeName); window.parent.postMessage( - { + { type: MessageType.MERKLE_PROOF_RETRIEVED, proof, messageId: event.data.messageId @@ -860,7 +863,7 @@ export async function registerAllListeners() { const res = services.validateMerkleProof(parsedMerkleProof, documentHash); window.parent.postMessage( - { + { type: MessageType.MERKLE_PROOF_VALIDATED, isValid: res, messageId: event.data.messageId @@ -973,9 +976,9 @@ document.addEventListener('navigate', ((e: Event) => { if (event.detail.page === 'chat') { const container = document.querySelector('.container'); if (container) container.innerHTML = ''; - + //initChat(); - + const chatElement = document.querySelector('chat-element'); if (chatElement) { chatElement.setAttribute('process-id', event.detail.processId || ''); diff --git a/src/services/service.ts b/src/services/service.ts index d22aee7..355c562 100755 --- a/src/services/service.ts +++ b/src/services/service.ts @@ -89,7 +89,7 @@ export default class Services { */ public async connectAllRelays(): Promise { const connectedUrls: string[] = []; - + // Connect to all relays for (const wsurl of Object.keys(this.relayAddresses)) { try { @@ -101,7 +101,7 @@ export default class Services { console.error(`Failed to connect to ${wsurl}:`, error); } } - + // Wait for at least one handshake message if we have connections if (connectedUrls.length > 0) { await this.waitForHandshakeMessage(); @@ -116,13 +116,14 @@ export default class Services { } return this.relayReadyPromise; } - + private resolveRelayReady(): void { if (this.relayReadyResolver) { this.relayReadyResolver(); this.relayReadyResolver = null; this.relayReadyPromise = null; } + } public async addWebsocketConnection(url: string): Promise { console.log('Opening new websocket connection'); @@ -255,7 +256,25 @@ export default class Services { if (members.size === 0) { // This must be a pairing process // Check if we have a pairedAddresses in the public data - const publicData = process.states[0]?.public_data; + let publicData: Record | null = null; + if (!stateId) { + publicData = process.states[process.states.length - 2]?.public_data; + } else { + publicData = process.states.find(state => state.state_id === stateId)?.public_data || null; + } + + // If pairedAddresses is not in the current state, look in previous states + if (!publicData || !publicData['pairedAddresses']) { + // Look for pairedAddresses in previous states + for (let i = process.states.length - 1; i >= 0; i--) { + const state = process.states[i]; + if (state.public_data && state.public_data['pairedAddresses']) { + publicData = state.public_data; + break; + } + } + } + if (!publicData || !publicData['pairedAddresses']) { throw new Error('Not a pairing process'); } @@ -409,7 +428,7 @@ export default class Services { if (!relayAddress) { throw new Error('❌ No relay address available after waiting'); } - + const feeRate = 1; // We can't encode files as the rest because Uint8Array is not valid json @@ -417,12 +436,12 @@ export default class Services { // TODO encoding of relatively large binaries (=> 1M) is a bit long now and blocking const privateSplitData = this.splitData(privateData); const publicSplitData = this.splitData(publicData); - const encodedPrivateData = { - ...this.sdkClient.encode_json(privateSplitData.jsonCompatibleData), + const encodedPrivateData = { + ...this.sdkClient.encode_json(privateSplitData.jsonCompatibleData), ...this.sdkClient.encode_binary(privateSplitData.binaryData) }; - const encodedPublicData = { - ...this.sdkClient.encode_json(publicSplitData.jsonCompatibleData), + const encodedPublicData = { + ...this.sdkClient.encode_json(publicSplitData.jsonCompatibleData), ...this.sdkClient.encode_binary(publicSplitData.binaryData) }; @@ -434,10 +453,10 @@ export default class Services { await this.getTokensFromFaucet(); const result = this.sdkClient.create_new_process ( - encodedPrivateData, + encodedPrivateData, roles, encodedPublicData, - relayAddress, + relayAddress, feeRate, this.getAllMembers() ); @@ -461,12 +480,12 @@ export default class Services { } const privateSplitData = this.splitData(privateData); const publicSplitData = this.splitData(publicData); - const encodedPrivateData = { - ...this.sdkClient.encode_json(privateSplitData.jsonCompatibleData), + const encodedPrivateData = { + ...this.sdkClient.encode_json(privateSplitData.jsonCompatibleData), ...this.sdkClient.encode_binary(privateSplitData.binaryData) }; - const encodedPublicData = { - ...this.sdkClient.encode_json(publicSplitData.jsonCompatibleData), + const encodedPublicData = { + ...this.sdkClient.encode_json(publicSplitData.jsonCompatibleData), ...this.sdkClient.encode_binary(publicSplitData.binaryData) }; try { @@ -590,7 +609,7 @@ export default class Services { } async parseNewTx(newTxMsg: string) { - const parsedMsg: NewTxMessage = JSON.parse(newTxMsg); + const parsedMsg: NewTxMessage = JSON.parse(newTxMsg); if (parsedMsg.error !== null) { console.error('Received error in new tx message:', parsedMsg.error); return; @@ -754,13 +773,79 @@ export default class Services { } } - public async confirmPairing() { + public async waitForPairingCommitment(processId: string, maxRetries: number = 30, retryDelay: number = 2000): Promise { + console.log(`⏳ Waiting for pairing process ${processId} to be committed and synchronized...`); + console.log(`🔄 This may take some time as we wait for SDK synchronization...`); + + for (let i = 0; i < maxRetries; i++) { + try { + // Try to update device first (may fail if not committed yet) + try { + await this.updateDevice(); + console.log(`✅ Device update successful on attempt ${i + 1}`); + } catch (e) { + console.log(`⚠️ Device update failed on attempt ${i + 1} (process may not be committed yet): ${e.message}`); + } + + const device = this.dumpDeviceFromMemory(); + console.log(`🔍 Attempt ${i + 1}/${maxRetries}: pairing_process_commitment =`, device.pairing_process_commitment); + + // Check if the commitment is set and not null/empty + if (device.pairing_process_commitment && + device.pairing_process_commitment !== null && + device.pairing_process_commitment !== '') { + console.log('✅ Pairing process commitment found:', device.pairing_process_commitment); + return; + } + + console.log(`⏳ Still waiting for SDK synchronization... (${i + 1}/${maxRetries})`); + } catch (e) { + console.log(`❌ Attempt ${i + 1}/${maxRetries}: Error during synchronization - ${e.message}`); + } + + if (i < maxRetries - 1) { + console.log(`⏳ Waiting ${retryDelay}ms before next attempt...`); + await new Promise(resolve => setTimeout(resolve, retryDelay)); + } + } + + throw new Error(`❌ Pairing process ${processId} was not synchronized after ${maxRetries} attempts (${maxRetries * retryDelay / 1000}s)`); + } + + public async confirmPairing(pairingId?: string) { try { // Is the wasm paired? - const pairingId = this.getPairingProcessId(); + console.log('confirmPairing'); + let processId: string; + if (pairingId) { + processId = pairingId; + console.log('pairingId (provided):', processId); + } else if (this.processId) { + processId = this.processId; + console.log('pairingId (from stored processId):', processId); + } else { + // Try to get pairing process ID, with retry if it fails + let retries = 3; + while (retries > 0) { + try { + processId = this.getPairingProcessId(); + console.log('pairingId (from SDK):', processId); + break; + } catch (e) { + retries--; + if (retries === 0) { + throw e; + } + console.log(`Failed to get pairing process ID, retrying... (${retries} attempts left)`); + await new Promise(resolve => setTimeout(resolve, 1000)); // Wait 1 second before retry + } + } + } // TODO confirm that the pairing process id is known, commited const newDevice = this.dumpDeviceFromMemory(); + console.log('newDevice:', newDevice); await this.saveDeviceInDatabase(newDevice); + console.log('Device saved in database'); } catch (e) { console.error('Failed to confirm pairing'); return; @@ -885,7 +970,7 @@ export default class Services { try { const device = await this.getDeviceFromDatabase(); if (device) { - const pairedMember = device['paired_member']; + const pairedMember = device['paired_member']; return pairedMember.sp_addresses; } else { return null; @@ -1072,7 +1157,7 @@ export default class Services { } catch (e) { console.error(`Failed to save data to db: ${e}`); } - } + } public async getBlobFromDb(hash: string): Promise { const db = await Database.getInstance(); @@ -1199,7 +1284,7 @@ export default class Services { }); } - // Now we can transfer them to memory + // Now we can transfer them to memory await this.restoreSecretsFromDB(); } @@ -1228,19 +1313,21 @@ export default class Services { } async decryptAttribute(processId: string, state: ProcessState, attribute: string): Promise { + console.log(`[decryptAttribute] Starting decryption for attribute: ${attribute}, processId: ${processId}`); let hash = state.pcd_commitment[attribute]; if (!hash) { - // attribute doesn't exist + console.log(`[decryptAttribute] No hash found for attribute: ${attribute}`); return null; } let key = state.keys[attribute]; + console.log(`[decryptAttribute] Initial key state for ${attribute}:`, key ? 'present' : 'missing'); const pairingProcessId = this.getPairingProcessId(); // If key is missing, request an update and then retry if (!key) { const roles = state.roles; let hasAccess = false; - // If we're not supposed to have access to this attribute, ignore + // If we're not supposed to have access to this attribute, ignore for (const role of Object.values(roles)) { for (const rule of Object.values(role.validation_rules)) { if (rule.fields.includes(attribute)) { @@ -1253,8 +1340,12 @@ export default class Services { } } - if (!hasAccess) return null; + if (!hasAccess) { + console.log(`[decryptAttribute] No access rights for attribute: ${attribute}`); + return null; + } + console.log(`[decryptAttribute] Requesting key update for attribute: ${attribute}`); await this.checkConnections((await this.getProcess(processId))!); // We should have the key, so we're going to ask other members for it await this.requestDataFromPeers(processId, [state.state_id], [state.roles]); @@ -1262,19 +1353,23 @@ export default class Services { const maxRetries = 5; const retryDelay = 500; // delay in milliseconds let retries = 0; - + while ((!hash || !key) && retries < maxRetries) { + console.log(`[decryptAttribute] Retry ${retries + 1}/${maxRetries} for attribute: ${attribute}`); await new Promise(resolve => setTimeout(resolve, retryDelay)); // Re-read hash and key after waiting hash = state.pcd_commitment[attribute]; key = state.keys[attribute]; retries++; + console.log(`[decryptAttribute] After retry ${retries}: hash=${!!hash}, key=${!!key}`); } } if (hash && key) { + console.log(`[decryptAttribute] Starting decryption process with hash: ${hash.substring(0, 8)}...`); const blob = await this.getBlobFromDb(hash); if (blob) { + console.log(`[decryptAttribute] Blob retrieved successfully for ${attribute}`); // Decrypt the data const buf = await blob.arrayBuffer(); const cipher = new Uint8Array(buf); @@ -1291,11 +1386,11 @@ export default class Services { throw new Error('decrypt_data returned null'); } } catch (e) { - console.error(`Failed to decrypt data: ${e}`); + console.error(`[decryptAttribute] Failed to decrypt data for ${attribute}:`, e); } } } - + return null; } @@ -1337,7 +1432,7 @@ export default class Services { await this.resetDevice(); await this.saveDeviceInDatabase(device); - + this.restoreDevice(device); // TODO restore secrets and processes from file @@ -1391,7 +1486,7 @@ export default class Services { this.relayAddresses[url] = handshakeMsg.sp_address; this.resolveRelayReady(); } - + console.log('handshakeMsg:', handshakeMsg); this.currentBlockHeight = handshakeMsg.chain_tip; console.log('this.currentBlockHeight:', this.currentBlockHeight); @@ -1521,7 +1616,7 @@ export default class Services { private async waitForHandshakeMessage(timeoutMs: number = 10000): Promise { const startTime = Date.now(); const pollInterval = 100; // Check every 100ms - + return new Promise((resolve, reject) => { const checkForHandshake = () => { // Check if we have any members or any relays (indicating handshake was received) @@ -1530,17 +1625,17 @@ export default class Services { resolve(); return; } - + // Check timeout if (Date.now() - startTime >= timeoutMs) { reject(new Error(`No handshake message received after ${timeoutMs}ms timeout`)); return; } - + // Continue polling setTimeout(checkForHandshake, pollInterval); }; - + checkForHandshake(); }); } @@ -1591,7 +1686,7 @@ export default class Services { this.sendCommitMessage(JSON.stringify(content)); }, 1000) } - + public getRoles(process: Process): Record | null { const lastCommitedState = this.getLastCommitedState(process); if (lastCommitedState && lastCommitedState.roles && Object.keys(lastCommitedState.roles).length != 0) { @@ -1771,7 +1866,7 @@ export default class Services { return process.states[index + 1]; } - return null; + return null; } public isPairingProcess(roles: Record): boolean { diff --git a/src/utils/sp-address.utils.ts b/src/utils/sp-address.utils.ts index 3e45554..c768a86 100755 --- a/src/utils/sp-address.utils.ts +++ b/src/utils/sp-address.utils.ts @@ -162,12 +162,6 @@ async function onCreateButtonClick() { export async function prepareAndSendPairingTx(): Promise { const service = await Services.getInstance(); - try { - await service.checkConnections([]); - } catch (e) { - throw e; - } - try { const relayAddress = service.getAllRelays(); const createPairingProcessReturn = await service.createPairingProcess( @@ -184,6 +178,12 @@ export async function prepareAndSendPairingTx(): Promise { await service.handleApiReturn(createPairingProcessReturn); + try { + await service.checkConnections(createPairingProcessReturn.updated_process.current_process); + } catch (e) { + throw e; + } + } catch (err) { console.error(err); } @@ -212,5 +212,5 @@ export async function generateCreateBtn() { } catch (err) { console.error(err); } - + } \ No newline at end of file