From ae1e39dd82fb3e0ec95bbed16783ee8d6dc2cced Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 11 Apr 2022 23:28:36 +0400 Subject: [PATCH] Perform some cleanup --- docs/.vuepress/config.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index f128dcca..d77e52ef 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -1,9 +1,5 @@ -const glob = require('glob'); const sidebar = require('./sidebar'); -console.log(__dirname + '/..'); -let markdownFiles = glob.sync('ru/*.md', { cwd: __dirname + '/..' }).map(f => '/' + f); - module.exports = { // site config lang: 'en-US', @@ -25,13 +21,6 @@ module.exports = { } }, locales: { - // The key is the path for the locale to be nested under. - // As a special case, the default locale can use '/' as its path. - // '/en': { - // lang: 'en-US', - // title: 'Clover', - // description: 'Clover Drone Kit' - // }, '/en/': { lang: 'en', title: 'Clover', @@ -51,6 +40,5 @@ module.exports = { plugins: [ '@vuepress/plugin-search', 'vuepress-plugin-copy-code2' - // ['@vuepress/plugin-search', {}] ] }