Add Swisscom SDX integration and update project configuration
- Updated angular.json to include new asset paths and styles for Swisscom SDX. - Modified package.json and package-lock.json to add @swisscom/sdx dependency. - Enhanced app.ts to include CUSTOM_ELEMENTS_SCHEMA for custom elements. - Updated main.ts to define custom elements from Swisscom SDX.
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
import { Component, signal } from '@angular/core';
|
||||
import { Component, signal, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
imports: [RouterOutlet],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
templateUrl: './app.html',
|
||||
styleUrl: './app.scss'
|
||||
styleUrl: './app.scss',
|
||||
})
|
||||
export class App {
|
||||
protected readonly title = signal('core');
|
||||
|
||||
Reference in New Issue
Block a user