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",
|
"main": "dist/code.js",
|
||||||
"ui": "dist/index.html",
|
"ui": "dist/index.html",
|
||||||
"editorType": ["figma"],
|
"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"
|
"documentAccess": "dynamic-page"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,5 +3,3 @@ VITE_TRUST_KEY=
|
||||||
VITE_AGENT_ID=
|
VITE_AGENT_ID=
|
||||||
VITE_LICENSE_KEY=
|
VITE_LICENSE_KEY=
|
||||||
VITE_APPLICATION_ID=
|
VITE_APPLICATION_ID=
|
||||||
VITE_BEACON=
|
|
||||||
VITE_ERROR_BEACON=
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ const options = {
|
||||||
init: {
|
init: {
|
||||||
distributed_tracing: { enabled: false },
|
distributed_tracing: { enabled: false },
|
||||||
privacy: { cookies_enabled: true },
|
privacy: { cookies_enabled: true },
|
||||||
ajax: { deny_list: [import.meta.env.VITE_BEACON] }
|
ajax: { deny_list: ['bam.eu01.nr-data.net'] }
|
||||||
},
|
},
|
||||||
loader_config: {
|
loader_config: {
|
||||||
accountID: import.meta.env.VITE_ACCOUNT_ID,
|
accountID: import.meta.env.VITE_ACCOUNT_ID,
|
||||||
|
@ -21,8 +21,8 @@ const options = {
|
||||||
applicationID: import.meta.env.VITE_APPLICATION_ID
|
applicationID: import.meta.env.VITE_APPLICATION_ID
|
||||||
},
|
},
|
||||||
info: {
|
info: {
|
||||||
beacon: import.meta.env.VITE_BEACON,
|
beacon: 'bam.eu01.nr-data.net',
|
||||||
errorBeacon: import.meta.env.VITE_ERROR_BEACON,
|
errorBeacon: 'bam.eu01.nr-data.net',
|
||||||
licenseKey: import.meta.env.VITE_LICENSE_KEY,
|
licenseKey: import.meta.env.VITE_LICENSE_KEY,
|
||||||
applicationID: import.meta.env.VITE_APPLICATION_ID,
|
applicationID: import.meta.env.VITE_APPLICATION_ID,
|
||||||
sa: 1
|
sa: 1
|
||||||
|
|
Loading…
Reference in a new issue