Files
penpot/plugins/apps/poc-state-plugin/src/main.ts
2026-02-10 08:29:24 +01:00

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));