mirror of
https://github.com/flutter/samples.git
synced 2025-11-09 06:18:49 +00:00
This should also fix the dependabot security alert currently open against the repository (https://github.com/flutter/samples/security/dependabot/8).
15 lines
478 B
TypeScript
15 lines
478 B
TypeScript
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { provideRouter, Routes } from '@angular/router';
|
|
import { AppComponent } from './app/app.component';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { importProvidersFrom } from '@angular/core';
|
|
|
|
const appRoutes: Routes = [];
|
|
|
|
bootstrapApplication(AppComponent, {
|
|
providers: [
|
|
provideRouter(appRoutes),
|
|
importProvidersFrom(BrowserAnimationsModule)
|
|
]
|
|
})
|