Open
Description
Version
3.0.0-beta.6
Reproduction link
https://codesandbox.io/s/k2qojnor8o
Steps to reproduce
I am using Vue cli and I have a components directory structure like this
- components
- button
- button.scss
- button.vue
- index.js
index.js // imports all components
What is expected?
I want to get my build files like this
- build
- button.js
- button.css
- index.js
- components.css
What is actually happening?
It bundles the entire components into one component
I use vue-cli-service build --target lib
and after that, I get
- build
- app.2fa32eb.css
- app.fa24cd4.js
Is it possible to do this with Vue cli, or do I have to use a custom build.