Rspack support?
#467
-
Hi, are you planing to support Rspack/Rsbuild? I tried out to use the webpack plugin after this instruction https://rsbuild.dev/plugins/dev/index#registering-rspack-plugin but got the following error: Thanks for your work! |
Beta Was this translation helpful? Give feedback.
Answered by
posva
Aug 5, 2024
Replies: 1 comment 1 reply
-
It's an unplugin so it should be able to support rspack (except for HMR): https://unplugin.unjs.io/guide/#bundler-framework-integration You can do import VueRouter from 'unplugin-vue-router'
// then use the one you need
VueRouter.rspack
VueRouter.vite
// etc. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Zercerium
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's an unplugin so it should be able to support rspack (except for HMR): https://unplugin.unjs.io/guide/#bundler-framework-integration
You can do