I'm trying to remove AbpAspNetCoreMvcUiBasicThemeModule from my web module because I have my own theme, but I got this Exception:
AbpException: No theme registered! Use AbpThemingOptions to register themes.
..
Do I have to develop my own theme ? or I can just remove the basic theme module and work with razor pages normally ?
Use AbpThemingOptions to register your theme. If you remove the theme, other modules will fail because they are using layouts of the current theme.
So, copy the basic theme into your solution and start your customization. This would be better and more compatible to existing modules.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
Use
AbpThemingOptionsto register your theme. If you remove the theme, other modules will fail because they are using layouts of the current theme.So, copy the basic theme into your solution and start your customization. This would be better and more compatible to existing modules.