valaxy-theme-yun 0.20.5 → 0.20.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/ValaxyMain.vue +2 -2
- package/components/YunAside.vue +1 -1
- package/components/YunBackToTop.vue +1 -1
- package/components/YunBanner.vue +2 -2
- package/components/YunBg.vue +1 -1
- package/components/YunCategory.vue +1 -1
- package/components/YunCategoryChildItem.vue +1 -1
- package/components/YunClassifyPopover.vue +1 -1
- package/components/YunDock.vue +3 -3
- package/components/YunFireworks.vue +2 -2
- package/components/YunFooter.vue +2 -2
- package/components/YunFullscreenMenu.vue +1 -1
- package/components/YunFuseSearch.vue +3 -3
- package/components/YunGirlItem.vue +2 -2
- package/components/YunGirls.vue +1 -1
- package/components/YunLinkItem.vue +1 -1
- package/components/YunLinks.vue +1 -1
- package/components/YunMdTimeWarning.vue +3 -4
- package/components/YunOutline.vue +1 -1
- package/components/YunPostCard.vue +1 -1
- package/components/YunPostCollapse.vue +1 -1
- package/components/YunPostCollapseItem.vue +1 -1
- package/components/YunPostList.vue +2 -2
- package/components/YunSocialLinkItem.vue +1 -1
- package/components/YunToggleLocale.vue +1 -1
- package/components/config/YunToggleDark.vue +2 -2
- package/components/menu/YunNavMenuTitle.vue +5 -2
- package/components/project/YunProjectCard.vue +2 -2
- package/components/project/YunProjects.vue +1 -1
- package/components/prologue/YunPrologueSquare.vue +1 -1
- package/components/site/YunFullscreenMenuItem.vue +1 -1
- package/components/site/YunSiteLinkItem.vue +2 -2
- package/components/theme/nimbo/YunNimboNavMenu.vue +1 -1
- package/components/theme/strato/YunStratoNavMenu.vue +1 -1
- package/components/third/YunAlgoliaSearch.vue +1 -1
- package/components/third/YunArtalk.vue +1 -1
- package/components/third/YunTwikoo.vue +1 -1
- package/components/third/YunWaline.vue +1 -1
- package/components/third/YunWalineMeta.vue +2 -2
- package/composables/animation.ts +1 -1
- package/composables/config.ts +2 -2
- package/composables/helper.ts +1 -1
- package/composables/useYunBanner.ts +2 -2
- package/docs/zh-CN/config.md +1 -1
- package/layouts/404.vue +1 -1
- package/layouts/categories.vue +2 -2
- package/layouts/post.vue +4 -4
- package/layouts/tags.vue +2 -2
- package/package.json +3 -3
- package/setup/main.ts +4 -8
- package/stores/app.ts +1 -1
- package/valaxy.config.ts +11 -2
@@ -1,8 +1,8 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import { computed, nextTick } from 'vue'
|
3
2
|
import type { PageData, Post } from 'valaxy'
|
4
|
-
import { onClickHref, onContentUpdated, scrollTo, usePostTitle, useSiteConfig } from 'valaxy'
|
5
3
|
import type { StyleValue } from 'vue'
|
4
|
+
import { onClickHref, onContentUpdated, scrollTo, usePostTitle, useSiteConfig } from 'valaxy'
|
5
|
+
import { computed, nextTick } from 'vue'
|
6
6
|
import { useRoute, useRouter } from 'vue-router'
|
7
7
|
import { usePostProperty } from '../composables'
|
8
8
|
|
package/components/YunAside.vue
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import { useI18n } from 'vue-i18n'
|
3
2
|
import { useFrontmatter } from 'valaxy'
|
4
3
|
import { computed, nextTick, ref, watch } from 'vue'
|
4
|
+
import { useI18n } from 'vue-i18n'
|
5
5
|
import { useYunAppStore } from '../stores'
|
6
6
|
|
7
7
|
const fm = useFrontmatter()
|
package/components/YunBanner.vue
CHANGED
@@ -6,11 +6,11 @@
|
|
6
6
|
*/
|
7
7
|
|
8
8
|
import type { CSSProperties } from 'vue'
|
9
|
-
import { computed, onMounted, ref } from 'vue'
|
10
9
|
import { sleep } from 'valaxy'
|
10
|
+
import { computed, onMounted, ref } from 'vue'
|
11
11
|
import { useThemeConfig } from '../composables'
|
12
|
-
import { useYunAppStore } from '../stores'
|
13
12
|
import { useYunBanner } from '../composables/useYunBanner'
|
13
|
+
import { useYunAppStore } from '../stores'
|
14
14
|
|
15
15
|
const yun = useYunAppStore()
|
16
16
|
const themeConfig = useThemeConfig()
|
package/components/YunBg.vue
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import { computed, watch } from 'vue'
|
3
2
|
import { useCssVar } from '@vueuse/core'
|
4
3
|
import { useAppStore } from 'valaxy'
|
4
|
+
import { computed, watch } from 'vue'
|
5
5
|
import { useThemeConfig } from '../composables'
|
6
6
|
|
7
7
|
const appStore = useAppStore()
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import { onMounted, ref } from 'vue'
|
3
2
|
import type { CategoryList, Post } from 'valaxy'
|
4
3
|
import { useInvisibleElement } from 'valaxy'
|
4
|
+
import { onMounted, ref } from 'vue'
|
5
5
|
import { useI18n } from 'vue-i18n'
|
6
6
|
import { useRouter } from 'vue-router'
|
7
7
|
import { useYunSpringAnimation } from '../composables/animation'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
+
import type { ComponentInstance } from 'vue'
|
2
3
|
import { useMotion } from '@vueuse/motion'
|
3
4
|
import Popover from 'primevue/popover'
|
4
|
-
import type { ComponentInstance } from 'vue'
|
5
5
|
import { onMounted, ref } from 'vue'
|
6
6
|
|
7
7
|
const op = ref<ComponentInstance<typeof Popover>>()
|
package/components/YunDock.vue
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
<script setup>
|
2
|
-
import { onBeforeUnmount, onMounted, ref, watch } from 'vue'
|
3
|
-
import { useToast } from 'primevue/usetoast'
|
4
|
-
import TerminalService from 'primevue/terminalservice'
|
5
2
|
import Dock from 'primevue/dock'
|
3
|
+
import TerminalService from 'primevue/terminalservice'
|
6
4
|
import Toast from 'primevue/toast'
|
5
|
+
import { useToast } from 'primevue/usetoast'
|
6
|
+
import { onBeforeUnmount, onMounted, ref, watch } from 'vue'
|
7
7
|
import { useYunAppStore } from '../stores'
|
8
8
|
|
9
9
|
onMounted(() => {
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
+
import type { YunTheme } from '../types'
|
3
|
+
import { createFireworks } from '@explosions/fireworks'
|
2
4
|
import { useThemeConfig } from 'valaxy'
|
3
5
|
import { onMounted } from 'vue'
|
4
|
-
import { createFireworks } from '@explosions/fireworks'
|
5
|
-
import type { YunTheme } from '../types'
|
6
6
|
|
7
7
|
const themeConfig = useThemeConfig<YunTheme.Config>()
|
8
8
|
|
package/components/YunFooter.vue
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import { capitalize, computed } from 'vue'
|
3
2
|
import { useSiteConfig, useValaxyConfig, useValaxyDark } from 'valaxy'
|
4
|
-
import { useI18n } from 'vue-i18n'
|
5
3
|
import pkg from 'valaxy/package.json'
|
4
|
+
import { capitalize, computed } from 'vue'
|
5
|
+
import { useI18n } from 'vue-i18n'
|
6
6
|
import { useThemeConfig } from '../composables'
|
7
7
|
|
8
8
|
// background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import {
|
3
|
-
import { useI18n } from 'vue-i18n'
|
2
|
+
import { isClient, onClickOutside, useScrollLock } from '@vueuse/core'
|
4
3
|
import { useFuseSearch } from 'valaxy'
|
4
|
+
import { ref, watch } from 'vue'
|
5
5
|
|
6
|
-
import {
|
6
|
+
import { useI18n } from 'vue-i18n'
|
7
7
|
|
8
8
|
const props = defineProps<{
|
9
9
|
open: boolean
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
-
import {
|
2
|
+
import type { GirlType } from '../types'
|
3
3
|
import { useMotion } from '@vueuse/motion'
|
4
|
+
import { ref } from 'vue'
|
4
5
|
import { onImgError } from '../utils'
|
5
|
-
import type { GirlType } from '../types'
|
6
6
|
|
7
7
|
const props = defineProps<{
|
8
8
|
i: number
|
package/components/YunGirls.vue
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
+
import type { LinkType } from '../types'
|
2
3
|
import { useMotion } from '@vueuse/motion'
|
3
4
|
import { ref } from 'vue'
|
4
5
|
import { onImgError } from '../utils'
|
5
|
-
import type { LinkType } from '../types'
|
6
6
|
|
7
7
|
const props = defineProps<{
|
8
8
|
i: number
|
package/components/YunLinks.vue
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import {
|
2
|
+
import { differenceInMilliseconds, formatDistanceToNow } from 'date-fns'
|
3
3
|
import { useFrontmatter } from 'valaxy'
|
4
|
-
import { useI18n } from 'vue-i18n'
|
5
4
|
|
6
|
-
import {
|
7
|
-
import {
|
5
|
+
import { computed, ref, watch } from 'vue'
|
6
|
+
import { useI18n } from 'vue-i18n'
|
8
7
|
|
9
8
|
const fm = useFrontmatter()
|
10
9
|
const { t, locale } = useI18n()
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import { computed, ref, watch } from 'vue'
|
3
2
|
import type { Post } from 'valaxy'
|
4
3
|
import { formatDate, sortByDate, useSiteConfig } from 'valaxy'
|
4
|
+
import { computed, ref, watch } from 'vue'
|
5
5
|
import { useI18n } from 'vue-i18n'
|
6
6
|
|
7
7
|
const props = defineProps<{
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
-
import { computed, ref } from 'vue'
|
3
|
-
import { useSiteConfig, useSiteStore } from 'valaxy'
|
4
2
|
import type { Post } from 'valaxy/types'
|
3
|
+
import { useSiteConfig, useSiteStore } from 'valaxy'
|
4
|
+
import { computed, ref } from 'vue'
|
5
5
|
|
6
6
|
const props = withDefaults(defineProps<{
|
7
7
|
type?: string
|
@@ -11,9 +11,12 @@ const siteConfig = useSiteConfig()
|
|
11
11
|
const route = useRoute()
|
12
12
|
const showPostTitle = ref(false)
|
13
13
|
const showSiteTitle = computed(() => {
|
14
|
+
if (route.path === '/')
|
15
|
+
return false
|
14
16
|
if (yunApp.isStrato)
|
15
|
-
return
|
16
|
-
|
17
|
+
return yunApp.scrollY < 10
|
18
|
+
else
|
19
|
+
return !showPostTitle.value
|
17
20
|
})
|
18
21
|
watch(() => yunApp.scrollY, () => {
|
19
22
|
if (yunApp.isNimbo)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
-
import
|
2
|
+
import type { ProjectItem } from '../../types'
|
3
3
|
import { TinyColor } from '@ctrl/tinycolor'
|
4
4
|
import { useMotion } from '@vueuse/motion'
|
5
|
-
import type
|
5
|
+
import { computed, type CSSProperties, ref } from 'vue'
|
6
6
|
import { cubicBezier } from '../../client/constants'
|
7
7
|
|
8
8
|
const props = defineProps<{
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
+
import type { ProjectDataType } from '../../types'
|
2
3
|
import { useFrontmatter } from 'valaxy'
|
3
4
|
import { reactive, ref } from 'vue'
|
4
5
|
import { useI18n } from 'vue-i18n'
|
5
|
-
import type { ProjectDataType } from '../../types'
|
6
6
|
|
7
7
|
const fm = useFrontmatter()
|
8
8
|
const { t } = useI18n()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
-
import { useYunAppStore } from '../../stores'
|
3
2
|
import type { PageProps } from '../../types'
|
3
|
+
import { useYunAppStore } from '../../stores'
|
4
4
|
|
5
5
|
defineProps<{
|
6
6
|
page: PageProps
|
@@ -11,7 +11,7 @@ const yunApp = useYunAppStore()
|
|
11
11
|
|
12
12
|
<template>
|
13
13
|
<AppLink
|
14
|
-
class="link-item inline-flex-center gap-2 transition rounded text-base p-1 md:(text-xl p-3) text-$va-c-text"
|
14
|
+
class="link-item inline-flex-center gap-2 transition rounded text-base p-1 md:(text-base p-2) lg:(text-xl p-3) text-$va-c-text"
|
15
15
|
inline-flex
|
16
16
|
:to="page.url" :title="page.name"
|
17
17
|
:style="`color:${page.color}`"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
-
import { onMounted, ref, watch } from 'vue'
|
3
2
|
import { useAppStore, useSiteConfig } from 'valaxy'
|
3
|
+
import { onMounted, ref, watch } from 'vue'
|
4
4
|
import { useRoute } from 'vue-router'
|
5
5
|
import { useYunAppStore } from '../../../stores'
|
6
6
|
// import { useThemeConfig } from '../composables'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<script setup lang="ts">
|
2
|
-
import { computed, onMounted, ref, watch } from 'vue'
|
3
2
|
import { useAppStore, useSiteConfig } from 'valaxy'
|
3
|
+
import { computed, onMounted, ref, watch } from 'vue'
|
4
4
|
import { useRoute } from 'vue-router'
|
5
5
|
import { useYunAppStore } from '../../../stores'
|
6
6
|
// import { useThemeConfig } from '../composables'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
+
import { isEmptyAddon } from 'valaxy'
|
2
3
|
import * as addonArtalk from 'valaxy-addon-artalk'
|
3
4
|
import 'valaxy-addon-artalk/client/styles/index.scss'
|
4
|
-
import { isEmptyAddon } from 'valaxy'
|
5
5
|
|
6
6
|
if (!isEmptyAddon(addonArtalk))
|
7
7
|
addonArtalk.useArtalkWithOptions()
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
+
import { isEmptyAddon } from 'valaxy'
|
2
3
|
import * as addonTwikoo from 'valaxy-addon-twikoo'
|
3
4
|
import 'valaxy-addon-twikoo/client/styles/index.scss'
|
4
|
-
import { isEmptyAddon } from 'valaxy'
|
5
5
|
|
6
6
|
if (!isEmptyAddon(addonTwikoo))
|
7
7
|
addonTwikoo.useTwikooWithOptions()
|
@@ -1,10 +1,10 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
2
|
import { useRuntimeConfig } from 'valaxy'
|
3
3
|
import { computed } from 'vue'
|
4
|
-
import { useRoute } from 'vue-router'
|
5
|
-
|
6
4
|
import { useI18n } from 'vue-i18n'
|
7
5
|
|
6
|
+
import { useRoute } from 'vue-router'
|
7
|
+
|
8
8
|
const route = useRoute()
|
9
9
|
const runtimeConfig = useRuntimeConfig()
|
10
10
|
|
package/composables/animation.ts
CHANGED
package/composables/config.ts
CHANGED
package/composables/helper.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
import { computed } from 'vue'
|
2
|
-
import { random } from 'valaxy'
|
3
1
|
import type { YunTheme } from '../types'
|
2
|
+
import { random } from 'valaxy'
|
3
|
+
import { computed } from 'vue'
|
4
4
|
|
5
5
|
export function useYunBanner(options: YunTheme.Banner) {
|
6
6
|
const chars = computed(() => {
|
package/docs/zh-CN/config.md
CHANGED
package/layouts/404.vue
CHANGED
package/layouts/categories.vue
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import {
|
2
|
+
import { defineWebPage, useSchemaOrg } from '@unhead/schema-org'
|
3
3
|
import { useCategories, useFrontmatter, usePostTitle, useSiteStore } from 'valaxy'
|
4
|
+
import { computed } from 'vue'
|
4
5
|
import { useI18n } from 'vue-i18n'
|
5
6
|
import { useRoute } from 'vue-router'
|
6
|
-
import { defineWebPage, useSchemaOrg } from '@unhead/schema-org'
|
7
7
|
|
8
8
|
const { t } = useI18n()
|
9
9
|
|
package/layouts/post.vue
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
-
import { computed } from 'vue'
|
3
|
-
import { useFrontmatter, useFullUrl, useSiteConfig } from 'valaxy'
|
4
|
-
|
5
2
|
import type { Article } from '@unhead/schema-org'
|
6
3
|
import { defineArticle, useSchemaOrg } from '@unhead/schema-org'
|
7
|
-
|
4
|
+
|
5
|
+
import { toDate } from 'date-fns'
|
6
|
+
import { useFrontmatter, useFullUrl, useSiteConfig } from 'valaxy'
|
7
|
+
import { computed } from 'vue'
|
8
8
|
|
9
9
|
const siteConfig = useSiteConfig()
|
10
10
|
const frontmatter = useFrontmatter()
|
package/layouts/tags.vue
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
<script lang="ts" setup>
|
2
|
+
import { defineWebPage, useSchemaOrg } from '@unhead/schema-org'
|
2
3
|
import { useFrontmatter, useInvisibleElement, usePostTitle, useSiteStore } from 'valaxy'
|
3
|
-
import { useI18n } from 'vue-i18n'
|
4
4
|
import { computed, ref } from 'vue'
|
5
|
+
import { useI18n } from 'vue-i18n'
|
5
6
|
import { useRoute, useRouter } from 'vue-router'
|
6
|
-
import { defineWebPage, useSchemaOrg } from '@unhead/schema-org'
|
7
7
|
import { useThemeConfig, useYunTags } from '../composables'
|
8
8
|
|
9
9
|
useSchemaOrg([
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "valaxy-theme-yun",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.20.
|
4
|
+
"version": "0.20.6",
|
5
5
|
"author": {
|
6
6
|
"email": "me@yunyoujun.cn",
|
7
7
|
"name": "YunYouJun",
|
@@ -28,12 +28,12 @@
|
|
28
28
|
"@vueuse/motion": "^2.2.6",
|
29
29
|
"animejs": "^3.2.2",
|
30
30
|
"gsap": "^3.12.5",
|
31
|
-
"primevue": "^4.2.
|
31
|
+
"primevue": "^4.2.4",
|
32
32
|
"radix-vue": "^1.9.10"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
35
|
"@types/animejs": "^3.1.12",
|
36
|
-
"valaxy": "0.20.
|
36
|
+
"valaxy": "0.20.6",
|
37
37
|
"valaxy-addon-waline": "0.2.0"
|
38
38
|
},
|
39
39
|
"scripts": {
|
package/setup/main.ts
CHANGED
@@ -1,15 +1,13 @@
|
|
1
|
-
import { defineAppSetup } from 'valaxy'
|
2
|
-
import '../styles/global.scss'
|
3
1
|
import { MotionPlugin } from '@vueuse/motion'
|
4
|
-
|
5
2
|
import PrimeVue from 'primevue/config'
|
6
|
-
|
7
|
-
import StyleClass from 'primevue/styleclass'
|
3
|
+
|
8
4
|
import ToastService from 'primevue/toastservice'
|
5
|
+
import { defineAppSetup } from 'valaxy'
|
6
|
+
import { useYunAppStore } from '../stores'
|
9
7
|
|
10
8
|
import primeStyles from '../styles/primevue'
|
9
|
+
import '../styles/global.scss'
|
11
10
|
import '../styles/primevue/tooltip.scss'
|
12
|
-
import { useYunAppStore } from '../stores'
|
13
11
|
|
14
12
|
export default defineAppSetup((ctx) => {
|
15
13
|
// can do for setup
|
@@ -42,8 +40,6 @@ export default defineAppSetup((ctx) => {
|
|
42
40
|
},
|
43
41
|
},
|
44
42
|
})
|
45
|
-
app.directive('animateonscroll', AnimateOnScroll)
|
46
|
-
app.directive('styleclass', StyleClass)
|
47
43
|
|
48
44
|
// use floating-vue
|
49
45
|
// app.directive('tooltip', Tooltip)
|
package/stores/app.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { acceptHMRUpdate, defineStore } from 'pinia'
|
2
1
|
import { isClient, useScroll, useToggle } from '@vueuse/core'
|
2
|
+
import { acceptHMRUpdate, defineStore } from 'pinia'
|
3
3
|
import { useScreenSize } from 'valaxy'
|
4
4
|
import { computed } from 'vue'
|
5
5
|
import { useThemeConfig } from '../composables'
|
package/valaxy.config.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import type { ResolvedValaxyOptions } from 'valaxy'
|
2
2
|
import type { Plugin } from 'vite'
|
3
|
-
import { defineTheme } from 'valaxy'
|
4
3
|
import type { ThemeConfig } from './types'
|
4
|
+
import { defineTheme } from 'valaxy'
|
5
5
|
import { defaultThemeConfig, generateSafelist } from './index'
|
6
6
|
|
7
7
|
function ThemeVitePlugin(options: ResolvedValaxyOptions<ThemeConfig>): Plugin {
|
@@ -20,7 +20,16 @@ function ThemeVitePlugin(options: ResolvedValaxyOptions<ThemeConfig>): Plugin {
|
|
20
20
|
},
|
21
21
|
|
22
22
|
optimizeDeps: {
|
23
|
-
include: [
|
23
|
+
include: [
|
24
|
+
'@ctrl/tinycolor',
|
25
|
+
'gsap',
|
26
|
+
'gsap/dist/ScrollToPlugin',
|
27
|
+
'@explosions/fireworks',
|
28
|
+
|
29
|
+
'@vueuse/motion',
|
30
|
+
'primevue/toastservice',
|
31
|
+
'primevue/config',
|
32
|
+
],
|
24
33
|
exclude: ['@docsearch/js'],
|
25
34
|
},
|
26
35
|
}
|