これはvue-loader(vue-webpackテンプレートのメインプラグイン)のデフォルトの動作です。抽出に関するvue-loaderのドキュメントをチェックアウト
npm install extract-text-webpack-plugin --save-dev
// webpack.config.js
var ExtractTextPlugin = require("extract-text-webpack-plugin")
module.exports = {
// other options...
module: {
loaders: [
{
test: /\.vue$/,
loader: 'vue'
},
]
},
vue: {
loaders: {
css: ExtractTextPlugin.extract("css"),
// you can also include <style lang="less"> or other langauges
less: ExtractTextPlugin.extract("css!less")
}
},
plugins: [
new ExtractTextPlugin("style.css")
]
}
:
しかし、あなたがしたい場合は、1つのファイルにすべてのCSSを抽出することができます。