-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
48 lines (46 loc) · 866 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* ip address of server
* @type {string}
*/
export const server = "http://127.0.0.1:8080/";
/**
* objects, that the app tries to render on the screen
* e.g.
* {
* "id": "temperature",
* "title": "Temperatur",
* "unit": "°"
* }
*/
export const config = [
{
id: "temperature",
title: "Temperatur",
unit: "°",
},
{
id: "rain",
title: "Regenmenge",
unit: "",
},
{
id: "humidity",
title: "Luftfeuchtigkeit",
unit: "%",
},
{
id: "windspeed",
title: "Wind-\ngeschwindigkeit",
unit: "km/h",
},
{
id: "pressure",
title: "Luftdruck",
unit: "hPa",
},
];
/**
* @type {boolean}
* if true, the app will disable logging (performance advantage)
*/
export const production = false;