main.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import { enableProdMode, ViewEncapsulation } from '@angular/core';
  17. import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
  18. import { preloaderFinished } from '@delon/theme';
  19. import { NzSafeAny } from 'ng-zorro-antd/core/types';
  20. import { AppModule } from './app/app.module';
  21. import { environment } from './environments/environment';
  22. preloaderFinished();
  23. if (environment.production) {
  24. enableProdMode();
  25. }
  26. platformBrowserDynamic()
  27. .bootstrapModule(AppModule, {
  28. defaultEncapsulation: ViewEncapsulation.Emulated,
  29. preserveWhitespaces: false
  30. })
  31. .then(res => {
  32. const win = window as NzSafeAny;
  33. if (win && win.appBootstrap) {
  34. win.appBootstrap();
  35. }
  36. return res;
  37. })
  38. .catch(err => console.error(err));