mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
6 lines
219 B
TypeScript
6 lines
219 B
TypeScript
import { bootstrapApplication } from "@angular/platform-browser";
|
|
import { App } from "./app/app";
|
|
import { appConfig } from "./app/app.config";
|
|
|
|
bootstrapApplication(App, appConfig).catch((err) => console.error(err));
|