vercelIntegration.js 859 B

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