diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 8f03a6b2a..3ae2d5190 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -2,14 +2,14 @@ module.exports = { title: "Pomerium", description: "An open source identity-aware access proxy.", - plugins: [ - [ - '@vuepress/google-analytics', - { - 'ga': 'UA-129872447-2' - } - ] - ], + plugins: { + 'sitemap': { + hostname: 'https://www.pomerium.io' + }, + '@vuepress/google-analytics': { + ga: 'UA-129872447-2' + } + }, themeConfig: { repo: "pomerium/pomerium", editLinks: true, diff --git a/package.json b/package.json new file mode 100644 index 000000000..13b696b5f --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "devDependencies": { + "@vuepress/plugin-google-analytics": "^1.0.0-alpha.47", + "vuepress": "^1.0.0-alpha.47", + "vuepress-plugin-sitemap": "^2.1.2" + }, + "scripts": { + "docs:dev": "vuepress dev docs", + "docs:build": "vuepress build docs", + "docs:deploy": "firebase deploy" + + }, + "dependencies": { + "esm": "^3.2.22" + } +}