Skip to content

Commit ab0746e

Browse files
Jinjiangyyx990803
authored andcommittedMay 7, 2018
docs: improve code blocks (#1231)
1 parent 2d7c0cf commit ab0746e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎docs/config.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ module.exports = {
2525
// https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only
2626
compiler: false,
2727

28-
// babel-loader skips node_module deps by default.
28+
// babel-loader skips `node_modules` deps by default.
2929
// explicitly transpile a dependency with this option.
3030
transpileDependencies: [/* string or regex */],
3131

3232
// whether to preserve whitespaces between elements during template
33-
// compilation. Defaults to false for smaller compiled code size and
33+
// compilation. Defaults to `false` for smaller compiled code size and
3434
// performance.
3535
preserveWhitepsace: false,
3636

‎docs/webpack.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ module.exports = {
110110

111111
You will need to familiarize yourself with [webpack-chain's API](https://github.com/mozilla-neutrino/webpack-chain#getting-started) and [read some source code](https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-service/lib/config) in order to understand how to leverage the full power of this option, but it gives you a more expressive and safer way to modify the webpack config than directly mutation values.
112112

113-
For example, say you want to change the default location of index.html from */Users/username/proj/public/index.html* to */Users/username/proj/app/templates/index.html*. By referencing [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin#options) you can see a list of options you can pass in. To change our template path we can pass in a new template path with the following config:
113+
For example, say you want to change the default location of `index.html` from `/Users/username/proj/public/index.html` to `/Users/username/proj/app/templates/index.html`. By referencing [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin#options) you can see a list of options you can pass in. To change our template path we can pass in a new template path with the following config:
114114

115115
``` js
116116
// vue.config.js
@@ -126,7 +126,7 @@ module.exports = {
126126
}
127127
```
128128

129-
You can confirm that this change has taken place by examining the vue webpack config with the **vue inspect** utility, which we will discuss next.
129+
You can confirm that this change has taken place by examining the vue webpack config with the `vue inspect` utility, which we will discuss next.
130130

131131
### Inspecting the Project's Webpack Config
132132

0 commit comments

Comments
 (0)
Please sign in to comment.