lbry-sec/next.config.js

11 lines
157 B
JavaScript
Raw Permalink Normal View History

2021-04-06 23:45:08 +02:00
module.exports = {
webpack: (config) => {
config.module.rules.push({
test: /\.md$/,
use: 'raw-loader',
});
return config;
},
};