I'm starting VueJS, I started my code from the original Vue Loader Example and I tested running npm run dev or npm run build but a question emerge : Is there a way to place all the css from the components in one place (like styles.min.css).
I added bootstrap as dependencies in my package.json and but when I do a npm run build I can only find the build.js file in dist, that's all.
Thank you for your help.
<style></style>and not any other file that you want generated. My point wasn't why it won't do it for you... If you want to have your css in a seperate file, then just create one... what's the problem? There are plenty of build tools for that too..<style></style>inlined in the html page, generated from the*.vuefiles, in one, external.cssfile. I'm also sure there is tools for that, hence my question :)