You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 line
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);