Hello
Noob question.
There appears to be no docs for the ngx-admin? Only Nebular?
For example where is the default theme set?
Thanks
JT
https://akveo.github.io/nebular/docs/guides/theme-system#nebular-theme-system
ngx-admin\src\app\@theme
in theme.module.ts
const NB_THEME_PROVIDERS = [
...NbThemeModule.forRoot(
{
name: 'corporate',
},
[ DEFAULT_THEME, COSMIC_THEME, CORPORATE_THEME ],
).providers,
...NbSidebarModule.forRoot().providers,
...NbMenuModule.forRoot().providers,
];
In name: 'corporate', change corporate to your theme of choice as default.
Hi @fabltd. Actually, most of the features you can find here are based on nebular, so ngx-admin is mostly showcase and starter kit. See Theme system guide when you need information on theming. There you'll find out that there are 3 ways you can enable theming based on your needs.
As always, thanks @Prefix1802, appreciate your support.
can this starter kit be used as base for projects for production because there is a warning to not to use ngx-admin for production when we run ngx-admin project
any suggestion??
Most helpful comment
https://akveo.github.io/nebular/docs/guides/theme-system#nebular-theme-system
ngx-admin\src\app\@theme
in theme.module.ts
const NB_THEME_PROVIDERS = [ ...NbThemeModule.forRoot( { name: 'corporate', }, [ DEFAULT_THEME, COSMIC_THEME, CORPORATE_THEME ], ).providers, ...NbSidebarModule.forRoot().providers, ...NbMenuModule.forRoot().providers, ];In name: 'corporate', change corporate to your theme of choice as default.