Files

46 lines
1.9 KiB
JavaScript

/*
* If you change the following items in the config object, you will not see any effect in the local development server
* as these are stored in the cookie (cookie has the highest priority over the themeConfig):
* 1. mode
* 2. skin
* 3. semiDark
* 4. layout
* 5. navbar.contentWidth
* 6. contentWidth
* 7. footer.contentWidth
*
* To see the effect of the above items, you can click on the reset button from the Customizer
* which is on the top-right corner of the customizer besides the close button.
* This will reset the cookie to the values provided in the config object below.
*
* Another way is to clear the cookie from the browser's Application/Storage tab and then reload the page.
*/
const themeConfig = {
templateName: 'Vuexy',
homePageUrl: '/dashboards/crm',
settingsCookieName: 'vuexy-mui-next-demo-6',
mode: 'dark', // 'system', 'light', 'dark'
skin: 'bordered', // 'default', 'bordered'
semiDark: false, // true, false
layout: 'horizontal', // 'vertical', 'collapsed', 'horizontal'
layoutPadding: 24, // Common padding for header, content, footer layout components (in px)
compactContentWidth: 1440, // in px
navbar: {
type: 'fixed', // 'fixed', 'static'
contentWidth: 'compact', // 'compact', 'wide'
floating: true, //! true, false (This will not work in the Horizontal Layout)
detached: true, //! true, false (This will not work in the Horizontal Layout or floating navbar is enabled)
blur: true // true, false
},
contentWidth: 'compact', // 'compact', 'wide'
footer: {
type: 'static', // 'fixed', 'static'
contentWidth: 'compact', // 'compact', 'wide'
detached: true //! true, false (This will not work in the Horizontal Layout)
},
disableRipple: false, // true, false
toastPosition: 'top-right' // 'top-right', 'top-center', 'top-left', 'bottom-right', 'bottom-center', 'bottom-left'
}
export default themeConfig