web: use absolute imports with path rewrite instead of relative imports (#3149)
This commit is contained in:
@ -2,7 +2,7 @@ import { CSSResult, LitElement, TemplateResult, css, html } from "lit";
|
||||
import { customElement, property } from "lit/decorators.js";
|
||||
import { ifDefined } from "lit/directives/if-defined.js";
|
||||
|
||||
import AKGlobal from "../../authentik.css";
|
||||
import AKGlobal from "@goauthentik/web/authentik.css";
|
||||
import PFCard from "@patternfly/patternfly/components/Card/card.css";
|
||||
import PFFlex from "@patternfly/patternfly/layouts/Flex/flex.css";
|
||||
import PFBase from "@patternfly/patternfly/patternfly-base.css";
|
||||
|
||||
@ -1,9 +1,10 @@
|
||||
import { PFSize } from "@goauthentik/web/elements/Spinner";
|
||||
import "@goauthentik/web/elements/Spinner";
|
||||
|
||||
import { TemplateResult, html } from "lit";
|
||||
import { customElement, property } from "lit/decorators.js";
|
||||
import { until } from "lit/directives/until.js";
|
||||
|
||||
import "../Spinner";
|
||||
import { PFSize } from "../Spinner";
|
||||
import { AggregateCard } from "./AggregateCard";
|
||||
|
||||
@customElement("ak-aggregate-card-promise")
|
||||
|
||||
Reference in New Issue
Block a user