config.js 799 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // basic config containing global api base URL
  2. export default {
  3. numberQuestions: 4,
  4. numberOfPoints: {
  5. first: 1200,
  6. last: 200
  7. },
  8. highlightedAmount: 0.18,
  9. api: {
  10. create: 'M5_WurstverzehrUserData/Create',
  11. proportions: 'M5_WurstverzehrUserData/ProportionCorrect',
  12. url: 'https://www.adaptivetoolbox.net/risikoatlas/api/'
  13. },
  14. fonts: {
  15. default: {
  16. family: 'Roboto',
  17. weight: 300,
  18. style: 'normal'
  19. },
  20. thin: {
  21. family: 'Roboto',
  22. weight: 200,
  23. style: 'normal'
  24. },
  25. bold: {
  26. family: 'Roboto',
  27. weight: 600,
  28. style: 'normal'
  29. },
  30. regular: {
  31. family: 'Roboto',
  32. weight: 400,
  33. style: 'normal'
  34. },
  35. mono: {
  36. family: 'Roboto Mono',
  37. weight: 300,
  38. style: 'normal'
  39. }
  40. }
  41. };