Skip to content

Commit bef6965

Browse files
emmiepwooorm
authored andcommitted
fix(docs): correct typos in Vue docs
Closes GH-1344. Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com> Reviewed-by: Titus Wormer <tituswormer@gmail.com>
1 parent a697301 commit bef6965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/vue.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ yarn add @mdx-js/vue-loader
1818

1919
## Configuring webpack
2020

21-
In a [Vue CLI](https://cli.vuejs.org/) you need to add a `webpack.config.js` that
21+
In a [Vue CLI](https://cli.vuejs.org/) you need to add a `vue.config.js` that
2222
uses the MDX loader for vue:
2323

2424
```js
@@ -27,7 +27,7 @@ module.exports = {
2727
module: {
2828
rules: [
2929
{
30-
test: /.mdx$/,
30+
test: /\.mdx$/,
3131
use: ['babel-loader', '@mdx-js/vue-loader']
3232
}
3333
]

0 commit comments

Comments
 (0)