Revision 93c0dd86758db6c198143a8b10c827209785776c authored by Jessica Janiuk on 15 November 2023, 20:28:32 UTC, committed by Jessica Janiuk on 15 November 2023, 20:31:56 UTC
1 parent 179304b
Raw File
main.server.ts
/*!
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.dev/license
 */

import {bootstrapApplication} from '@angular/platform-browser';
import {AppComponent} from './app/app.component';
import {config} from './app/app.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, config);

export default bootstrap;
back to top