vercelIntegration.js 778 B

1234567891011121314151617181920212223242526272829
  1. export const VercelProvider = () => ({
  2. setupDialog: {
  3. url: '/organizations/sentry/integrations/vercel/setup/',
  4. width: 600,
  5. height: 600,
  6. },
  7. canAdd: true,
  8. canDisable: false,
  9. name: 'Vercel',
  10. key: 'vercel',
  11. features: ['deployment'],
  12. slug: 'vercel',
  13. metadata: {
  14. description: 'VERCEL DESC',
  15. features: [
  16. {
  17. featureGate: 'integrations-deployment',
  18. description: 'DEPLOYMENT DESCRIPTION',
  19. },
  20. ],
  21. author: 'The Sentry Team',
  22. noun: 'Installation',
  23. issue_url:
  24. 'https://github.com/getsentry/sentry/issues/new?title=Vercel%20Integration:%20&labels=Component%3A%20Integrations',
  25. source_url:
  26. 'https://github.com/getsentry/sentry/tree/master/src/sentry/integrations/vercel',
  27. aspects: {},
  28. },
  29. });