mirror of
https://github.com/mue/mue.git
synced 2026-07-17 14:04:09 +02:00
Co-authored-by: David Ralph <me@davidcralph.co.uk> Co-authored-by: Isaac <contact@eartharoid.me>
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
const DefaultOptions = {
|
|
greeting: true,
|
|
birthday: new Date(),
|
|
customEvents: [],
|
|
birthdayenabled: false,
|
|
defaultGreetingMessage: true,
|
|
greetingName: '',
|
|
birthdayage: false,
|
|
zoomGreeting: 100
|
|
};
|
|
|
|
export default DefaultOptions;
|