Skip to content

Commit

Permalink
docs: (ru) Translation update (vuejs#3036) [ci skip]
Browse files Browse the repository at this point in the history
* docs: (ru) config/README.md update devServer example

* docs: (ru) creating-a-project.md update
  • Loading branch information
Alex-Sokolov authored and haoqunjiang committed Dec 1, 2018
1 parent 7d99c44 commit 9697caf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/ru/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,12 +330,12 @@ module.exports = {
module.exports = {
devServer: {
proxy: {
'/api': {
'^/api': {
target: '<url>',
ws: true,
changeOrigin: true
},
'/foo': {
'^/foo': {
target: '<other_url>'
}
}
Expand Down
3 changes: 3 additions & 0 deletions docs/ru/guide/creating-a-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ vue create hello-world

::: warning Предупреждение
Если используете Git Bash с minTTY на Windows, то интерактивные подсказки не будут работать. Запускайте команды таким образом `winpty vue.cmd create hello-world`.
При желании использовать синтаксис `vue create hello-world` можно создать псевдоним для команды, добавив следующую строку в ваш файл `~/.bashrc`.
`alias vue='winpty vue.cmd'`
Необходимо будет перезапустить сеанс терминала Git Bash для использования обновлённого файла bashrc.
:::

Вам будет предложено выбрать пресет настроек. Можно выбрать пресет по умолчанию (default), который добавляет Babel + ESLint, или настройку вручную («Manually select features») для выбора требуемых возможностей в новом проекте.
Expand Down

0 comments on commit 9697caf

Please sign in to comment.