File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
projects/website-angular/src Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,18 +8,18 @@ import { InfoFooterComponent } from './app/info-footer/info-footer.component';
88// Create the Angular application with standalone configuration
99createApplication ( appConfig ) . then ( ( appRef ) => {
1010 const websiteAngularElement = createCustomElement ( AppComponent , {
11- injector : appRef . injector
11+ injector : appRef . injector ,
1212 } ) ;
13-
13+
1414 const navigationBarElement = createCustomElement ( NavigationBarComponent , {
15- injector : appRef . injector
15+ injector : appRef . injector ,
1616 } ) ;
1717
1818 const infoFooterElement = createCustomElement ( InfoFooterComponent , {
19- injector : appRef . injector
19+ injector : appRef . injector ,
2020 } ) ;
21-
21+
2222 customElements . define ( 'website-angular' , websiteAngularElement ) ;
2323 customElements . define ( 'app-navigation-bar' , navigationBarElement ) ;
24- customElements . define ( 'app-info-footer' , infoFooterElement )
24+ customElements . define ( 'app-info-footer' , infoFooterElement ) ;
2525} ) ;
You can’t perform that action at this time.
0 commit comments