import qd-design library

This commit is contained in:
MastersGame
2026-06-11 01:20:39 +02:00
parent f837c7e902
commit 8efa4eab12
6 changed files with 25 additions and 349 deletions

View File

@@ -1,7 +1,7 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { App } from './app/app';
import { config } from './app/app.config.server';
const bootstrap = () => bootstrapApplication(App, config);
const bootstrap = (context: BootstrapContext) => bootstrapApplication(App, config, context);
export default bootstrap;