policy.js 271 B

123456789
  1. import { BrowserPolicy } from 'meteor/browser-policy-common';
  2. Meteor.startup(() => {
  3. const matomoUrl = process.env.MATOMO_ADDRESS;
  4. if (matomoUrl){
  5. BrowserPolicy.content.allowScriptOrigin(matomoUrl);
  6. BrowserPolicy.content.allowImageOrigin(matomoUrl);
  7. }
  8. });