Hello,
It was fixed with this pr. I will try reproduce the problem again
Hello,
Can you add the following lines to your route.provider.ts
file?
import { eLayoutType, RoutesService } from '@abp/ng.core';
import { APP_INITIALIZER } from '@angular/core';
import { eSaasRouteNames } from '@volo/abp.ng.saas/config';
export const APP_ROUTE_PROVIDER = [
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
];
function configureRoutes(routes: RoutesService) {
return () => {
routes.add([
// other routes
{
path: '/my-path',
name: 'MenuName',
iconClass: 'fas fa-chart-line',
order: 2,
layout: eLayoutType.application,
parentName: eSaasRouteNames.Saas,
},
]);
};
}
You can read the documentation about Modifying-the-Menu
Hello,
getEnvConfig
API request is related to RemoteEnvironment. You could remove the configuration if you didn't use it.
Hello,
Did you clear localStorage?
Hello,
@bqabani can you try without -t paramter abp generate-proxy
, -t means target in your version. You can read more details in document
Hello,
You can set defaultTheme
property to true when creating an instance from LpxTheme class.
const myTheme = new LpxTheme({
icon: 'bi bi-sun',
label: 'My Theme',
defaultTheme: true, //this line sets default theme
bundles: [
{
bundleName: 'dark',
},
{
bundleName: 'bootstrap-dark',
},
],
styleName: 'myTheme',
});
Hello,
Can you share the logs? Which template do you using?
Hello,
We are preparing the Lepton-x style source files. Also, we will provide documentation about using lepton x scss files.
Hello,
What is your angular version?
Is the defaultProject property exists in your angular.json
?
We know defaultProject deprecated with angular 14. And we fixed proxy generation. The fix will be available in 6.0.2
Hello
The bug was fixed with this issue. The fix will be available with the 6.0.2 version.
Also, you can use the following command
ng generate @abp/ng.schematics:proxy-add --target=ProjectName --source=ProjectName