| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // basic config containing global api base URL
- export default {
- numberQuestions: 4,
- numberOfPoints: {
- first: 1200,
- last: 200
- },
- highlightedAmount: 0.18,
- api: {
- create: 'M5_WurstverzehrUserData/Create',
- proportions: 'M5_WurstverzehrUserData/ProportionCorrect',
- url: 'https://www.adaptivetoolbox.net/risikoatlas/api/'
- },
- fonts: {
- default: {
- family: 'Roboto',
- weight: 300,
- style: 'normal'
- },
- thin: {
- family: 'Roboto',
- weight: 200,
- style: 'normal'
- },
- bold: {
- family: 'Roboto',
- weight: 600,
- style: 'normal'
- },
- regular: {
- family: 'Roboto',
- weight: 400,
- style: 'normal'
- },
- mono: {
- family: 'Roboto Mono',
- weight: 300,
- style: 'normal'
- }
- }
- };
|