We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94ba1f1 commit f7a874dCopy full SHA for f7a874d
README.md
@@ -48,6 +48,32 @@ module.exports = {
48
};
49
```
50
51
+### With `vue-loader 15`
52
+
53
54
55
+```js
56
+const VueLoaderPlugin = require('vue-loader/lib/plugin')
57
58
+module.exports = {
59
+ module: {
60
+ rules: [
61
+ {
62
+ test: /\.vue$/,
63
+ loader: 'vue-loader'
64
+ },
65
66
+ test: /\.md$/,
67
+ loaders: ['vue-loader', 'vue-markdown-loader/lib/markdown-compiler.js']
68
+ }
69
+ ]
70
71
+ plugins: [
72
+ new VueLoaderPlugin()
73
74
+}
75
+```
76
77
## Options
78
79
### preventExtract
0 commit comments