settings.ts 770 B

1234567891011121314151617
  1. import {t} from 'sentry/locale';
  2. export const MODULE_TITLE = t('Assets');
  3. export const DATA_TYPE = t('Asset');
  4. export const BASE_URL = 'browser/assets'; // Name of the data shown (singular)
  5. export const MODULE_DESCRIPTION = t(
  6. 'Find large and slow-to-load resources used by your application and understand their impact on page performance.'
  7. );
  8. export const PERFORMANCE_MODULE_TITLE = t('Resources');
  9. export const PERFORMANCE_BASE_URL = 'browser/resources';
  10. export const PERFORMANCE_DATA_TYPE = t('Resource');
  11. export const PERFORMANCE_MODULE_DESCRIPTION = t(
  12. 'Find large and slow-to-load resources used by your application and understand their impact on page performance.'
  13. );
  14. export const MODULE_DOC_LINK = 'https://docs.sentry.io/product/performance/resources/';