-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: expose @vitejs/plugin-vue config #215
feat: expose @vitejs/plugin-vue config #215
Conversation
I personally don't feel it's good to be a root-level config option as it loses some context here. Maybe we can have a config entry that forwards the options for |
@antfu Are there any other options from Maybe |
I am thinking to have a top-level option const vuePlugin = createVuePlugin({
include: [/\.vue$/, /\.md$/],
...configs.vueOptions
}) WDYT? |
Thanks for clarifying, makes sense to me. Ill update the PR later today!! 😃 |
Fixes #214