From 202b7531e172cc50750474a42757f02ba3d64e1d Mon Sep 17 00:00:00 2001 From: Qin Guan Date: Sat, 15 Jul 2023 16:33:30 +0800 Subject: [PATCH] feat: perf --- app.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.vue b/app.vue index 7b55399..28a75f0 100644 --- a/app.vue +++ b/app.vue @@ -11,7 +11,8 @@ const resolvedTheme = computed(() => { if (cookieRaw.value) theme = cookieRaw.value - return `/themes/${theme}/theme.css` + + return `https://cdn.jsdelivr.net/npm/primevue@latest/resources/themes/${theme}/theme.css` })