You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/webpack.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ module.exports = {
110
110
111
111
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.
112
112
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:
114
114
115
115
```js
116
116
// vue.config.js
@@ -126,7 +126,7 @@ module.exports = {
126
126
}
127
127
```
128
128
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.
0 commit comments