0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 05:33:02 -05:00
This commit is contained in:
Alex Sánchez 2024-10-17 13:12:42 +02:00
parent f92510a2d4
commit e58f9fe44e
No known key found for this signature in database
GPG key ID: 9EB820F2C89412B9
3 changed files with 7 additions and 6 deletions

View file

@ -5,6 +5,9 @@
"main": "dist/code.js",
"ui": "dist/index.html",
"editorType": ["figma"],
"networkAccess": { "allowedDomains": ["https://bam.eu01.nr-data.net"] },
"networkAccess": {
"allowedDomains": ["https://bam.eu01.nr-data.net"],
"reasoning": "We use New Relic to monitor the performance of our application and get errors information."
},
"documentAccess": "dynamic-page"
}

View file

@ -3,5 +3,3 @@ VITE_TRUST_KEY=
VITE_AGENT_ID=
VITE_LICENSE_KEY=
VITE_APPLICATION_ID=
VITE_BEACON=
VITE_ERROR_BEACON=

View file

@ -11,7 +11,7 @@ const options = {
init: {
distributed_tracing: { enabled: false },
privacy: { cookies_enabled: true },
ajax: { deny_list: [import.meta.env.VITE_BEACON] }
ajax: { deny_list: ['bam.eu01.nr-data.net'] }
},
loader_config: {
accountID: import.meta.env.VITE_ACCOUNT_ID,
@ -21,8 +21,8 @@ const options = {
applicationID: import.meta.env.VITE_APPLICATION_ID
},
info: {
beacon: import.meta.env.VITE_BEACON,
errorBeacon: import.meta.env.VITE_ERROR_BEACON,
beacon: 'bam.eu01.nr-data.net',
errorBeacon: 'bam.eu01.nr-data.net',
licenseKey: import.meta.env.VITE_LICENSE_KEY,
applicationID: import.meta.env.VITE_APPLICATION_ID,
sa: 1