diff --git a/docs/pt_BR/configurations/custom-blocks.md b/docs/pt_BR/configurations/custom-blocks.md index 518a41908..f3a01dbd5 100644 --- a/docs/pt_BR/configurations/custom-blocks.md +++ b/docs/pt_BR/configurations/custom-blocks.md @@ -57,11 +57,11 @@ module.exports = { } } } - ], - plugins: [ - // saída de todos os docs em um único arquivo - new ExtractTextPlugin('docs.md') ] - } + }, + plugins: [ + // saída de todos os docs em um único arquivo + new ExtractTextPlugin('docs.md') + ] } ``` diff --git a/docs/ru/configurations/custom-blocks.md b/docs/ru/configurations/custom-blocks.md index aea3c641e..31e3a55e2 100644 --- a/docs/ru/configurations/custom-blocks.md +++ b/docs/ru/configurations/custom-blocks.md @@ -57,11 +57,11 @@ module.exports = { } } } - ], - plugins: [ - // вывести всю документацию в отдельный файл - new ExtractTextPlugin('docs.md') ] - } + }, + plugins: [ + // вывести всю документацию в отдельный файл + new ExtractTextPlugin('docs.md') + ] } ```