Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

9 lines
346 B
Plaintext
Executable File

import { BootstrapContext, bootstrapApplication } from '@angular/platform-browser';
import { <%= appComponentName %> } from '<%= appComponentPath %>';
import { config } from './app/app.config.server';
const bootstrap = (context: BootstrapContext) =>
bootstrapApplication(<%= appComponentName %>, config, context);
export default bootstrap;