mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
478 B
15 lines
478 B
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)
|
|
]
|
|
})
|