lbry-sec/next.config.js

11 lines
157 B
JavaScript
Raw Normal View History

2021-03-27 18:41:37 +01:00
module.exports = {
2021-03-29 03:57:22 +02:00
webpack: (config) => {
config.module.rules.push({
test: /\.md$/,
use: 'raw-loader',
});
return config;
2021-03-27 18:41:37 +01:00
},
};