升级至 angular 19 并且迁移至 standalone components 后运行时报错
main.ts:6 RuntimeError: NG05105: Unexpected synthetic property @tabSwitchMotion found. Please make sure that:
- Either `BrowserAnimationsModule` or `NoopAnimationsModule` are imported in your application.
- There is corresponding configuration for the animation named `@tabSwitchMotion` defined in the `animations` field of the `@Component` decorator (see https://angular.io/api/core/Component#animations).
需要在 app.config.ts 中添加 provideAnimations
providers: [
provideAnimations(),
]