lbry-sec/next.config.js
2021-03-28 22:11:06 -04:00

10 lines
157 B
JavaScript

module.exports = {
webpack: (config) => {
config.module.rules.push({
test: /\.md$/,
use: 'raw-loader',
});
return config;
},
};