diff --git a/app/components/Chart/AccountEventsTimeline.vue b/app/components/Chart/AccountEventsTimeline.vue index cc2a192..872e59b 100644 --- a/app/components/Chart/AccountEventsTimeline.vue +++ b/app/components/Chart/AccountEventsTimeline.vue @@ -12,8 +12,6 @@ import { useColors } from "~/composables/useColors"; import { identityConfig, type IdentityClassification } from "@unveil/identity"; import type { VueUiXyDatasetLineItem } from "vue-data-ui/vue-ui-xy"; -import("vue-data-ui/style.css"); - const props = defineProps<{ events: GitHubEvent[]; classification?: IdentityClassification; diff --git a/app/components/Chart/GlobalEventsBreakdown.vue b/app/components/Chart/GlobalEventsBreakdown.vue index 89daa1f..195d6c9 100644 --- a/app/components/Chart/GlobalEventsBreakdown.vue +++ b/app/components/Chart/GlobalEventsBreakdown.vue @@ -7,8 +7,6 @@ import { import type { VueUiStacklineDatasetItem } from "vue-data-ui/vue-ui-stackline"; import { useColors } from "~/composables/useColors"; -import("vue-data-ui/style.css"); - const props = defineProps<{ data: Array; }>(); diff --git a/app/components/Chart/GlobalEventsEvolution.vue b/app/components/Chart/GlobalEventsEvolution.vue index da068ab..90a749a 100644 --- a/app/components/Chart/GlobalEventsEvolution.vue +++ b/app/components/Chart/GlobalEventsEvolution.vue @@ -8,8 +8,6 @@ import { import { useChartTooltipPosition } from "~/composables/useChartTooltipPosition"; import { useColors } from "~/composables/useColors"; -import("vue-data-ui/style.css"); - const props = defineProps<{ data: VueUiStacklineDatasetItem[]; timestamps: string[]; diff --git a/app/components/Chart/GlobalEventsHeatmap.vue b/app/components/Chart/GlobalEventsHeatmap.vue index 4a8f90b..abd42fd 100644 --- a/app/components/Chart/GlobalEventsHeatmap.vue +++ b/app/components/Chart/GlobalEventsHeatmap.vue @@ -12,8 +12,6 @@ import { mergeConfigs } from "vue-data-ui/utils"; dayjs.extend(isoWeek); -import("vue-data-ui/style.css"); - const props = defineProps<{ data: VueUiStacklineDatasetItem[]; timestamps: string[]; diff --git a/app/components/Chart/GlobalEventsSplitSparklines.vue b/app/components/Chart/GlobalEventsSplitSparklines.vue index ef2d157..7d36de7 100644 --- a/app/components/Chart/GlobalEventsSplitSparklines.vue +++ b/app/components/Chart/GlobalEventsSplitSparklines.vue @@ -8,8 +8,6 @@ import { getPalette } from "vue-data-ui/utils"; import { useColors } from "~/composables/useColors"; import type { VueUiStacklineDatasetItem } from "vue-data-ui/vue-ui-stackline"; -import("vue-data-ui/style.css"); - const props = defineProps<{ dataset?: Array; dates: string[]; diff --git a/app/components/Chart/GlobalScatter.vue b/app/components/Chart/GlobalScatter.vue index cd2e8e7..053a650 100644 --- a/app/components/Chart/GlobalScatter.vue +++ b/app/components/Chart/GlobalScatter.vue @@ -6,7 +6,6 @@ import { type VueUiScatterConfig, } from "vue-data-ui/vue-ui-scatter"; -import "vue-data-ui/style.css"; import { useColors } from "~/composables/useColors"; const props = defineProps<{ diff --git a/app/components/Chart/GlobalScoreGauge.vue b/app/components/Chart/GlobalScoreGauge.vue index b4293be..67b271f 100644 --- a/app/components/Chart/GlobalScoreGauge.vue +++ b/app/components/Chart/GlobalScoreGauge.vue @@ -5,7 +5,6 @@ import { type VueUiGaugeConfig, } from "vue-data-ui/vue-ui-gauge"; -import "vue-data-ui/style.css"; import { useColors } from "~/composables/useColors"; const props = defineProps<{ diff --git a/nuxt.config.ts b/nuxt.config.ts index b9c8aaf..c8c5a5b 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -13,7 +13,6 @@ export default defineNuxtConfig({ "@vueuse/core", "vue-data-ui/vue-ui-xy", "vue-data-ui/vue-ui-heatmap", - "vue-data-ui/vue-ui-icon", ], }, }, @@ -45,7 +44,7 @@ export default defineNuxtConfig({ githubToken: "", }, - css: ["~/assets/main.css"], + css: ["~/assets/main.css", "vue-data-ui/style.css"], app: { head: {