Configuration

Configuration

Bankhub has a configuration settings that you can use to customize the behavior of the application. The configuration object is located at ./src/assets/js/main.js.

Edit the $themeConfig object to change the behavior of the application.

      const themeConfig = {
  layout: '', // vertical, two-column, hovered, detached, horizontal
  direction: '', // rtl, ltr
  theme: '', // light, dark
  customizer: true, // true, false
};           
    

Available options

Option Type Default Description
layout String 'vertical' Set the menu of the application. Can be vertical, two-column, hovered, detached, horizontal
direction String 'ltr' Set the direction of the application. Can be 'ltr' or 'rtl'
theme String '' Set the theme of the application. Can be 'light' or 'dark'
customizer Bolean '' Show or Hide the customizer of the application. Can be a true or false.