]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/main.ts
Add issue template
[github/Chocobozzz/PeerTube.git] / client / src / main.ts
1 import { enableProdMode } from '@angular/core';
2 import { bootstrap } from '@angular/platform-browser-dynamic';
3
4 import { AppComponent } from './app/app.component';
5
6 if (process.env.ENV === 'production') {
7 enableProdMode();
8 }
9
10 bootstrap(AppComponent);