mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
19 lines
318 B
JavaScript
19 lines
318 B
JavaScript
'use strict'
|
|
|
|
const baseProfile = require('./base.json')
|
|
const products = require('./products')
|
|
|
|
const svvProfile = {
|
|
...baseProfile,
|
|
locale: 'at-DE',
|
|
timezone: 'Europe/Vienna',
|
|
|
|
products,
|
|
|
|
trip: true,
|
|
refreshJourney: true,
|
|
reachableFrom: true,
|
|
refreshJourneyUseOutReconL: true,
|
|
}
|
|
|
|
module.exports = svvProfile
|