mutu-rsab/public/vuexy/assets/js/front-config.js
2025-11-28 15:44:00 +07:00

41 lines
1.5 KiB
JavaScript

/**
* Config
* -------------------------------------------------------------------------------------
* ! IMPORTANT: Make sure you clear the browser local storage In order to see the config changes in the template.
* ! To clear local storage: (https://www.leadshook.com/help/how-to-clear-local-storage-in-google-chrome-browser/).
*/
'use strict';
window.assetsPath = document.documentElement.getAttribute('data-assets-path');
window.templateName = document.documentElement.getAttribute('data-template');
// JS global variables
window.config = {
// global color variables for charts except chartjs
colors: {
black: window.Helpers.getCssVar('pure-black'),
white: window.Helpers.getCssVar('white')
}
};
/**
* TemplateCustomizer settings
* -------------------------------------------------------------------------------------
* cssPath: Core CSS file path
* themesPath: Theme CSS file path
* displayCustomizer: true(Show customizer), false(Hide customizer)
* lang: To set default language, Add more langues and set default. Fallback language is 'en'
* controls: [ 'rtl', 'style', 'headerType', 'contentLayout', 'layoutCollapsed', 'layoutNavbarOptions', 'themes' ] | Show/Hide customizer controls
* defaultTheme: 'light', 'dark', 'system' (Mode)
* defaultTextDir: 'ltr', 'rtl' (Direction)
*/
if (typeof TemplateCustomizer !== 'undefined') {
window.templateCustomizer = new TemplateCustomizer({
displayCustomizer: false,
// defaultTextDir: 'rtl',
// defaultTheme: 'dark',
controls: ['color', 'theme', 'rtl']
});
}