@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
10 lines (8 loc) • 419 B
text/typescript
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { TemplatePlaygroundModule } from './template-playground.module';
// Bootstrap the Angular application when the DOM is ready
document.addEventListener('DOMContentLoaded', () => {
platformBrowserDynamic()
.bootstrapModule(TemplatePlaygroundModule)
.catch(err => console.error('Error starting template playground:', err));
});