diff --git a/.gitignore b/.gitignore index 00154128fa..2761c32ce8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ node_modules *.log .temp TODOs.md -packages/docs/vuepress/ +vuepress packages/blog-example diff --git a/packages/docs/docs/.vuepress/config.js b/packages/docs/docs/.vuepress/config.js index e150af86a0..346ff55bc2 100644 --- a/packages/docs/docs/.vuepress/config.js +++ b/packages/docs/docs/.vuepress/config.js @@ -1,5 +1,5 @@ module.exports = { - dest: 'vuepress', + dest: '../../vuepress', locales: { '/': { lang: 'en-US', @@ -103,7 +103,8 @@ module.exports = { '@vuepress/pwa': { serviceWorker: true, updatePopup: true - } + }, + '@vuepress/plugin-medium-zoom': true } } diff --git a/packages/docs/package.json b/packages/docs/package.json index 87f280350d..8922bbb461 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -25,6 +25,7 @@ "vuepress": "^1.0.0", "@vuepress/plugin-back-to-top": "^1.0.0", "@vuepress/plugin-pwa": "^1.0.0", - "@vuepress/plugin-i18n-ui": "^1.0.0" + "@vuepress/plugin-i18n-ui": "^1.0.0", + "@vuepress/plugin-medium-zoom": "^1.0.0" } }