-
How can rsbuild handle |
Beta Was this translation helpful? Give feedback.
Answered by
Romej
Aug 16, 2024
Replies: 1 comment
-
If someone is looking for an answer to this question, here is the solution : tools: {
rspack: (config, { mergeConfig }) => {
return mergeConfig(config, {
module: {
rules: [
{
test: /\.md$/,
type: 'asset/source',
},
],
},
});
},
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Romej
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If someone is looking for an answer to this question, here is the solution :