43 lines
803 B
JavaScript
43 lines
803 B
JavaScript
module.exports = {
|
|
pageInfo: {
|
|
title: 'Dashy',
|
|
description: '',
|
|
},
|
|
appConfig: {},
|
|
iconSize: 'medium',
|
|
layout: 'auto',
|
|
theme: 'default',
|
|
fontAwesomeKey: 'def7c3ce4c',
|
|
builtInThemes: [
|
|
'nord',
|
|
'nord-frost',
|
|
'callisto',
|
|
'thebe',
|
|
'material',
|
|
'dracula',
|
|
'matrix',
|
|
'matrix-red',
|
|
'hacker-girl',
|
|
'bee',
|
|
'raspberry-jam',
|
|
'tiger',
|
|
'colorful',
|
|
'high-contrast-light',
|
|
'high-contrast-dark',
|
|
],
|
|
visibleComponents: {
|
|
pageTitle: true,
|
|
navigation: true,
|
|
searchBar: true,
|
|
settings: true,
|
|
footer: true,
|
|
},
|
|
localStorageKeys: {
|
|
HIDE_WELCOME_BANNER: 'hideWelcomeHelpers',
|
|
LAYOUT_ORIENTATION: 'layoutOrientation',
|
|
COLLAPSE_STATE: 'collapseState',
|
|
ICON_SIZE: 'iconSize',
|
|
THEME: 'theme',
|
|
},
|
|
};
|