/** * Vendor Imports * * This entry point is used by Webpack to place vendor code into it's own bundle during the build. This has the * benefit of separating application code from vendor code, allowing better caching for code that changes less * often and allowing parallel downloading of the two primary code bundles for the application. Follow the * commented organization pattern for adding new dependencies. * * Polyfills - Should only be imported in this file, not directly by the application * * Global Imports - Dependencies that are not polyfills, but are not directly imported elsewhere in the app * * Angular Imports - All @angular dependencies * * Angular Third-Party - All angular-specific third-party dependencies * * Other Dependencies - All other third-party dependencies */ // Polyfills import 'core-js/es6'; import 'core-js/es7/reflect'; // Global Imports import 'bootstrap/dist/css/bootstrap.css'; import 'bootstrap/dist/css/bootstrap-theme.css'; import 'leaflet'; import 'leaflet/dist/leaflet.css'; import 'leaflet-draw'; import 'leaflet-draw/dist/leaflet.draw.css'; // This addresses a weird thing with how Leaflet handles icon URLs. See README for details. import 'leaflet/dist/images/marker-shadow.png'; import 'leaflet/dist/images/marker-icon.png'; // Angular Imports import '@angular/common'; import '@angular/core'; import '@angular/platform-browser'; import '@angular/platform-browser-dynamic'; // Angular Third-Party import '@asymmetrik/ngx-leaflet'; // Other Dependencies import 'rxjs'; import 'zone.js';