mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 05:33:02 -05:00
fixes
This commit is contained in:
parent
f92510a2d4
commit
e58f9fe44e
3 changed files with 7 additions and 6 deletions
|
@ -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"
|
||||
}
|
||||
|
|
|
@ -3,5 +3,3 @@ VITE_TRUST_KEY=
|
|||
VITE_AGENT_ID=
|
||||
VITE_LICENSE_KEY=
|
||||
VITE_APPLICATION_ID=
|
||||
VITE_BEACON=
|
||||
VITE_ERROR_BEACON=
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue