Add raw-loader

This commit is contained in:
Valtteri Karesto
2022-03-08 11:22:39 +02:00
parent ed37427da8
commit 5209644780
6 changed files with 62 additions and 3 deletions

View File

@@ -11,6 +11,10 @@ module.exports = {
if (!isServer) {
config.resolve.fallback.fs = false;
}
config.module.rules.push({
test: /\.md$/,
use: "raw-loader",
});
return config;
},
};