Does anyone know the regex needed to exclude .story.vue but include .vue files in auto imports?
#252
Replies: 4 comments
-
|
Easiest would be to add |
Beta Was this translation helpful? Give feedback.
-
|
You can use |
Beta Was this translation helpful? Give feedback.
-
|
I tried exclude initially and it didn't work. Here is what I have: |
Beta Was this translation helpful? Give feedback.
-
|
Hello @Bobakanoosh . |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I like using unplugin-vue-components to allow component auto importing.
However, my "default" regex to include vue files is:
include: [/\.vue$/],This ends up including
.story.vuefiles as well, which isn't a massive deal, but kind of annoying.I tried figuring out the regex for it myself with no luck.
Beta Was this translation helpful? Give feedback.
All reactions