lbry-sec/next.config.js
2021-04-06 17:45:08 -04:00

11 lines
157 B
JavaScript

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