mirror of
https://github.com/penpot/penpot.git
synced 2026-03-20 17:33:44 +00:00
8 lines
300 B
TypeScript
8 lines
300 B
TypeScript
import { provideZoneChangeDetection } from '@angular/core';
|
|
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { AppComponent } from './app/app.component';
|
|
|
|
bootstrapApplication(AppComponent, {
|
|
providers: [provideZoneChangeDetection()],
|
|
}).catch((err) => console.error(err));
|