mirror of
https://github.com/Terncode/pixel.horse.git
synced 2026-09-24 21:55:52 +02:00
* Revert "7f7efbb94bab8574e42d942ad82d414e007b2970" Code style changes should probably be part of a PR
18 lines
488 B
TypeScript
18 lines
488 B
TypeScript
import 'focus-visible';
|
|
import 'core-js/es';
|
|
import 'core-js/stable/promise/finally';
|
|
import 'core-js/proposals/reflect-metadata';
|
|
import 'zone.js/dist/zone';
|
|
import 'zone.js/dist/long-stack-trace-zone';
|
|
import 'canvas-toBlob';
|
|
import './client/polyfils';
|
|
import { enableProdMode } from '@angular/core';
|
|
|
|
if (document.body.getAttribute('data-debug') !== 'true' || localStorage.production) {
|
|
enableProdMode();
|
|
}
|
|
|
|
if (typeof module !== 'undefined' && module.hot) {
|
|
module.hot.accept();
|
|
}
|