feat(challenge5): add permissions challenge 5

This commit is contained in:
thomas laforge
2022-11-20 21:51:22 +01:00
parent 31d4662a55
commit e0e8dfe9a6
26 changed files with 548 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { enableProdMode } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { provideRouter } from '@angular/router';
import { AppComponent } from './app/app.component';
import { APP_ROUTES } from './app/routes';
import { environment } from './environments/environment';
if (environment.production) {
enableProdMode();
}
bootstrapApplication(AppComponent, {
providers: [provideRouter(APP_ROUTES)],
}).catch((err) => console.error(err));