diff options
author | wangyuerg <wangyuerg@chinamobile.com> | 2020-09-02 15:28:58 +0800 |
---|---|---|
committer | Yue Wang <wangyuerg@chinamobile.com> | 2020-09-02 10:22:30 +0000 |
commit | 4c1a5bd26960aeed20d8fe41b225da39111250b7 (patch) | |
tree | 2e23e8cd33974b6c25cd3ed1c9da0e1c5fa913f3 /usecaseui-portal/src/main.ts | |
parent | f2ab4faa09a577a1d5008b692c67ded0f480db9e (diff) |
fix: fix the bug of enter, add prompt text for every area selector, add hot module replacement
Change-Id: Id0c8810ea3c062acf1f731e93c31b30ea941d1a6
Signed-off-by: wangyuerg <wangyuerg@chinamobile.com>
Issue-ID: USECASEUI-444
Diffstat (limited to 'usecaseui-portal/src/main.ts')
-rw-r--r-- | usecaseui-portal/src/main.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usecaseui-portal/src/main.ts b/usecaseui-portal/src/main.ts index 91ec6da5..c67101a3 100644 --- a/usecaseui-portal/src/main.ts +++ b/usecaseui-portal/src/main.ts @@ -4,9 +4,11 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app/app.module'; import { environment } from './environments/environment'; + if (environment.production) { enableProdMode(); } platformBrowserDynamic().bootstrapModule(AppModule) .catch(err => console.log(err)); + |