Browse Source

Change dev app theme to Theme-Basic from LeptonXLite

pull/16739/head
Mahmut Gundogdu 3 years ago
parent
commit
1737d2d033
  1. 10
      npm/ng-packs/apps/dev-app/project.json
  2. 4
      npm/ng-packs/apps/dev-app/src/app/app.module.ts
  3. 2
      npm/ng-packs/package.json

10
npm/ng-packs/apps/dev-app/project.json

@ -18,6 +18,16 @@
"allowedCommonJsDependencies": ["chart.js", "js-sha256"],
"assets": ["apps/dev-app/src/favicon.ico", "apps/dev-app/src/assets"],
"styles": [
{
"input": "node_modules/bootstrap/dist/css/bootstrap.rtl.min.css",
"inject": false,
"bundleName": "bootstrap-rtl.min"
},
{
"input": "node_modules/bootstrap/dist/css/bootstrap.min.css",
"inject": true,
"bundleName": "bootstrap-ltr.min"
},
{
"input": "node_modules/@volo/ngx-lepton-x.lite/assets/css/bootstrap-dim.css",
"inject": false,

4
npm/ng-packs/apps/dev-app/src/app/app.module.ts

@ -1,3 +1,4 @@
import { ThemeBasicModule } from '@abp/ng.theme.basic';
import { AccountConfigModule } from '@abp/ng.account/config';
import { CoreModule } from '@abp/ng.core';
import { registerLocale } from '@abp/ng.core/locale';
@ -35,8 +36,7 @@ import { AbpOAuthModule } from '@abp/ng.oauth';
TenantManagementConfigModule.forRoot(),
FeatureManagementModule.forRoot(),
SettingManagementConfigModule.forRoot(),
ThemeLeptonXModule.forRoot(),
SideMenuLayoutModule.forRoot(),
ThemeBasicModule.forRoot(),
],
providers: [APP_ROUTE_PROVIDER],
declarations: [AppComponent],

2
npm/ng-packs/package.json

@ -5,7 +5,7 @@
"scripts": {
"ng": "nx",
"nx": "nx",
"start": "ng serve",
"start": "nx serve",
"build": "ng build",
"build:all": "nx run-many --target=build --all --exclude=dev-app,schematics --prod ",
"test": "ng test --detect-open-handles=true --run-in-band=true --watch-all=true",

Loading…
Cancel
Save