diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index f0a6b10..a9e1bd0 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -2,7 +2,8 @@ import { defineUserConfig } from "vuepress"; import type { DefaultThemeOptions } from "vuepress"; import recoTheme from "vuepress-theme-reco"; import { themeConfig } from './config/index' -import { umamiAnalyticsPlugin } from 'vuepress-plugin-umami-analytics' +import { sitemapPlugin } from '@vuepress/plugin-sitemap' +import { webpackBundler } from '@vuepress/bundler-webpack' export default defineUserConfig({ locales: { @@ -37,9 +38,9 @@ export default defineUserConfig({ } }, plugins: [ - umamiAnalyticsPlugin({ - id: '50be7a94-e1d7-4d49-a8db-67b17acaa0b3', - src: 'https://114.115.147.1/script.js' - }) - ] + sitemapPlugin({ + hostname: 'mapstruct.plus' + }), + ], + bundler: webpackBundler(), }); diff --git a/package.json b/package.json index c0f3f70..b9404c4 100644 --- a/package.json +++ b/package.json @@ -12,9 +12,10 @@ "docs:clean-dev": "vuepress dev docs --clean-cache" }, "dependencies": { - "vue": "3.3.11", - "vuepress": "2.0.0-rc.0", - "vuepress-plugin-umami-analytics": "^1.7.0", - "vuepress-theme-reco": "2.0.0-rc.1" + "vue": "^3.4.27", + "vuepress": "2.0.0-rc.12", + "vuepress-theme-reco": "2.0.0-rc.13", + "@vuepress/bundler-webpack": "2.0.0-rc.12", + "@vuepress/plugin-sitemap": "2.0.0-rc.12" } }