-
https://rsbuild.dev/guide/basic/configure-rspack#toolsbundlerchain rsbuild has a toolsbundlerchain to config built in rspack. so does rspack have a bundler chain builtin like webpack-chain? maybe like? const rspack=require("@rspack/core")
const chain= rspack.ConfigObj()
chain.module
.rule('md')
.test(/\.md$/)
.use('md-loader')
.loader('md-loader');
module.exports = config.toConfig(); |
Beta Was this translation helpful? Give feedback.
Answered by
xc2
May 7, 2024
Replies: 1 comment 4 replies
-
webpack-chain works fine for rspack, please try out it first. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
yzqdev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
webpack-chain works fine for rspack, please try out it first.