In the provider of app.config.ts add provideRouter() and you can pass your routes in that
routes.ts
export routes: Route[] = [...]
app.config.ts import the routes than
export const appConfig: ApplicationConfig = {
providers: [
provideRouter(routes)
]
}