Sin descripción
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.

main.ts 222B

123456
  1. import { bootstrapApplication } from '@angular/platform-browser';
  2. import { appConfig } from './app/app.config';
  3. import { App } from './app/app';
  4. bootstrapApplication(App, appConfig)
  5. .catch((err) => console.error(err));