generator-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
13 lines (12 loc) • 582 B
JavaScript
export const mutateApplication = {
__override__: false,
exposeMicrofrontend: ({ microfrontend }) => microfrontend,
/**
* Color mode https://getbootstrap.com/docs/5.3/customize/color-modes/
*/
vueBootstrapBsTheme: ({ clientThemeNone, clientThemeVariantLight }) => (clientThemeNone || !clientThemeVariantLight ? 'dark' : 'light'),
/**
* https://bootstrap-vue-next.github.io/bootstrap-vue-next/docs/components/navbar.html#comp-reference-bnavbar-properties
*/
vueBootstrapVariant: ({ clientThemeVariant }) => clientThemeVariant ?? 'dark',
};