feat(doc): move module to standalone

This commit is contained in:
thomas
2023-10-18 10:01:49 +02:00
parent 5ec510269d
commit f96e9f3f80
15 changed files with 31 additions and 31 deletions

View File

@@ -0,0 +1,6 @@
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic()
.bootstrapModule(AppModule)
.catch((err) => console.error(err));