diff --git a/docs/index.html b/docs/index.html index d1e4dcc..363c7a8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -3,9 +3,9 @@ Demo preview - + - + - + - - + + diff --git a/package.json b/package.json index 9593540..49d1b3f 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ "start": "ng serve", "start:dev": "ng build ngx-cube-loader --watch --configuration development", "build": "ng build", + "build-demo": "ng build --project demo --base-href=/kd-loader/", "watch": "ng build --watch --configuration development", "test": "ng test", "build-library": "ng build ngx-cube-loader --configuration=production", diff --git a/projects/demo/src/app/app.config.ts b/projects/demo/src/app/app.config.ts index 22b2bd0..b118a94 100644 --- a/projects/demo/src/app/app.config.ts +++ b/projects/demo/src/app/app.config.ts @@ -4,5 +4,5 @@ import { provideRouter } from '@angular/router'; import { routes } from './app.routes'; export const appConfig: ApplicationConfig = { - providers: [provideRouter(routes)] + providers: [provideRouter(routes)], };