mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 04:39:01 +00:00
17 lines
457 B
TypeScript
17 lines
457 B
TypeScript
// Compat needs to be first import
|
|
import "../resources/compatibility";
|
|
import "@polymer/polymer/lib/elements/dom-if";
|
|
import "@polymer/polymer/lib/elements/dom-repeat";
|
|
import "../auth/ha-authorize";
|
|
import "../resources/ha-style";
|
|
import "../resources/roboto";
|
|
|
|
/* polyfill for paper-dropdown */
|
|
setTimeout(
|
|
() =>
|
|
import(
|
|
/* webpackChunkName: "polyfill-web-animations-next" */ "web-animations-js/web-animations-next-lite.min"
|
|
),
|
|
2000
|
|
);
|