UNPKG
gridsome-plugin-mdvue
Version:
latest (0.0.1)
0.0.1
mdvue plguin for Gridsome
github.com/mattsanf/gridsome-plugin-mdvue
mattsanf/gridsome-plugin-mdvue
gridsome-plugin-mdvue
/
index.js
16 lines
(14 loc)
•
412 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function
MdvuePlugin
(api)
{ api.chainWebpack((
config
) => {
config
.
module
.rule(
'compile'
) .test(/\.(mdvue|mdv)$/) .use(
'vue'
) .loader(
'vue-loader'
) .
end
() .use(
'mdvue'
) .loader(
'mdvue'
) .
end
(); }); }
module
.exports = MdvuePlugin;