wulkanowy.github.io/vue.config.js

12 lines
200 B
JavaScript
Raw Normal View History

2019-02-24 18:22:51 +01:00
module.exports = {
2019-12-07 14:18:08 +01:00
publicPath: '/',
chainWebpack: (config) => {
config.module
.rule('md')
.test(/\.md$/)
.use('raw-loader')
.loader('raw-loader')
.end();
},
2019-02-24 18:22:51 +01:00
};