Files
mixtape/unjo.Web/config.js
T

20 lines
456 B
JavaScript
Raw Normal View History

2020-03-22 14:18:34 +01:00
export default {
isDebug: process.env.NODE_ENV !== 'production',
apiBase: '/api',
countries: [
{ value: 'austria', text: 'Austria' },
{ value: 'germany', text: 'Germany' },
{ value: 'usa', text: 'USA' }
],
categories: [
{ value: 'unknown', text: '' },
{ value: 'socialInsurance', text: 'SVA' },
{ value: 'tax', text: 'Tax' },
{ value: 'payout', text: 'Payout' },
{ value: 'payment', text: 'Payment' }
]
};