mirror of
https://github.com/mue/mue.git
synced 2026-07-16 13:34:03 +02:00
Co-authored-by: David Ralph <me@davidcralph.co.uk> Co-authored-by: Isaac <contact@eartharoid.me>
16 lines
310 B
JavaScript
16 lines
310 B
JavaScript
const DefaultOptions = {
|
|
weather: false,
|
|
windspeed: true,
|
|
weatherType: 'basic',
|
|
tempformat: 'celsius',
|
|
weatherdescription: false,
|
|
cloudiness: false,
|
|
humidity: false,
|
|
visibility: false,
|
|
windDirection: false,
|
|
atmosphericpressure: false,
|
|
zoomWeather: 100,
|
|
};
|
|
|
|
export default DefaultOptions;
|