feat(move): move lib

This commit is contained in:
thomas
2023-10-17 23:02:33 +02:00
parent 2e0c7f61cb
commit fcd125d001
17 changed files with 23 additions and 23 deletions

View File

@@ -0,0 +1,10 @@
import { enableProdMode } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';
if (environment.production) {
enableProdMode();
}
bootstrapApplication(AppComponent).catch((err) => console.error(err));