angular/dev-app/src/main.ts
Miles Malerba 25e13e9f96
build: add a dev-app
Adds a dev app that can be used to prototype and debug things while
developing Angular. Use `pnpm dev` to run it.
2025-11-06 09:05:32 -08:00

5 lines
213 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));