This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Description
So i added this to my webpack.config.js
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
vue: {
loaders: {
js: 'buble-loader',
scss: ExtractTextPlugin.extract({
loader: 'css-loader!sass-loader',
fallbackLoader: 'vue-style-loader'
})
}
},
plugins: [
new ExtractTextPlugin("../css/components.css")
]
};
It works and extracts all style tags to an css file, only is also still injects style tags into the head. how do i disable the head style injection?? i have been trying for a whole day, its driving me crazy xD