webpackには新しくなっていますが、現在はwebpackがドキュメント本体にスタイルを注入しています。私はこれを達成する方法がわかりません。ここでwebpackからCSS/Autoprefixerが動作しないようにします。
は私のwebpack.config.js
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
output: {
filename: 'bundle.js'
},
entry: {
app: './js/app.js'
},
module: {
loaders: [
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract({use:[{loader: 'css-loader', options: {importLoaders: 1}}, 'postcss-loader', 'sass-loader']})
}
]
},
plugins: [
new ExtractTextPlugin('styles.css'),
new webpack.LoaderOptionsPlugin({options: {
context: __dirname,
postcss: [
autoprefixer
]
}})
]
};
html出力であるあなたは、それは私が持っているSCSSファイルと一致していないCSSを注入まだ見ることができるように
<html>
<head>
<title>Test</title>
<link rel="stylesheet" href="/wp-content/themes/index/styles.css">
<style type="text/css">
body {
background-color: black; }
h1 {
color: #fff; }
p {
display: flex;
color: #fff; }
</style>
<style type="text/css"></style>
</head>
<body>
<h1>Test</h1>
<p>Test</p>
<script src="/wp-content/themes/index/dist/bundle.js"></script>
</body>
</html>
です。また、flexプロパティに接頭辞を付けたり、私のsassファイルにあるインポートを含めたりしていません。
h2 {
color: blue;
}
Euuuh ...あなたはscssローダーであるローダーは1つしかありません...あなたは正確に何を期待していますか? – briosheje