10 lines
158 B
JavaScript
10 lines
158 B
JavaScript
module.exports = {
|
|
webpack: function(config) {
|
|
config.module.rules.push({
|
|
test: /\.md$/,
|
|
use: 'raw-loader',
|
|
})
|
|
return config
|
|
},
|
|
}
|