ng new defaults, Angular 22.1, vitest unit-test builder — npm test runs once and green under CI. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
12 lines
313 B
TypeScript
12 lines
313 B
TypeScript
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
import { routes } from './app.routes';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideBrowserGlobalErrorListeners(),
|
|
provideRouter(routes)
|
|
]
|
|
};
|