18 lines
886 B
JavaScript
18 lines
886 B
JavaScript
// Appwrite Configuration
|
|
// Update these values with your Appwrite instance details
|
|
|
|
// Use var instead of const to ensure global scope in service worker
|
|
var APPWRITE_CONFIG = {
|
|
endpoint: 'https://appwrite.webklar.com/v1',
|
|
projectId: '696b82bb0036d2e547ad',
|
|
apiKey: 'standard_d48c6eebe825b55e685d8e66ea056161105470702da77b730aca08c106ffbadfa2375ff675dbe9e01d7bb72b4a9fa001ff7c365b73759bc5fb3da432c3cd9cee1151e67517e9838d1f96f942d9891ce66ddc6f11c0fdd67a24f7c84e0fa9999a74dacf2c6aa3533998c177f190fc87ffb5a30b27474be21aece4c70d71d205ba' // Set your API Key here (see README for instructions)
|
|
};
|
|
|
|
// Protected website URL (where the extension will be active)
|
|
var PROTECTED_SITE_URL = 'http://localhost:5173';
|
|
|
|
// Export for use in service worker and content scripts
|
|
if (typeof module !== 'undefined' && module.exports) {
|
|
module.exports = { APPWRITE_CONFIG, PROTECTED_SITE_URL };
|
|
}
|