ezfw-core 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/services.ts +2 -2
- package/package.json +1 -1
package/core/services.ts
CHANGED
|
@@ -76,7 +76,7 @@ export class EzServices {
|
|
|
76
76
|
return;
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
const { CryptoService } = await import('../services/crypto.js');
|
|
79
|
+
const { CryptoService } = await import(/* @vite-ignore */ '../services/crypto.js');
|
|
80
80
|
await CryptoService.init(env.VITE_CRYPTO_SECRET);
|
|
81
81
|
this._crypto = CryptoService;
|
|
82
82
|
}
|
|
@@ -97,7 +97,7 @@ export class EzServices {
|
|
|
97
97
|
projectId: env.VITE_FIREBASE_PROJECT_ID,
|
|
98
98
|
};
|
|
99
99
|
|
|
100
|
-
const { FirebaseService } = await import('../services/firebase.js');
|
|
100
|
+
const { FirebaseService } = await import(/* @vite-ignore */ '../services/firebase.js');
|
|
101
101
|
this._firebase = new FirebaseService(firebaseConfig) as unknown as FirebaseService;
|
|
102
102
|
await this._firebase!.init();
|
|
103
103
|
}
|