feat: Challenges Page and Challenge Solve Modal

This commit is contained in:
OpenVelo Agent
2026-07-23 00:13:57 +00:00
parent 77d31e0ee1
commit cb88b21462
32 changed files with 4134 additions and 119 deletions
+4 -1
View File
@@ -6,10 +6,13 @@ import { AppComponent } from './app/app.component';
import { APP_ROUTES } from './app/app.routes';
import { authInterceptor } from './app/core/interceptors/auth.interceptor';
import { csrfInterceptor } from './app/core/interceptors/csrf.interceptor';
import { errorNotificationInterceptor } from './app/core/interceptors/error-notification.interceptor';
bootstrapApplication(AppComponent, {
providers: [
provideHttpClient(withInterceptors([csrfInterceptor, authInterceptor])),
provideHttpClient(
withInterceptors([csrfInterceptor, authInterceptor, errorNotificationInterceptor]),
),
provideRouter(APP_ROUTES, withComponentInputBinding()),
],
}).catch((err) => console.error(err));