您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
819B

  1. /*!
  2. =========================================================
  3. * Paper Kit 2 Angular - v1.3.0
  4. =========================================================
  5. * Product Page: https://www.creative-tim.com/product/paper-kit-2-angular
  6. * Copyright 2017 Creative Tim (https://www.creative-tim.com)
  7. * Licensed under MIT (https://github.com/timcreative/paper-kit/blob/master/LICENSE.md)
  8. =========================================================
  9. * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  10. */
  11. import { enableProdMode } from '@angular/core';
  12. import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
  13. import { AppModule } from './app/app.module';
  14. enableProdMode();
  15. platformBrowserDynamic().bootstrapModule(AppModule);