我正在为我的 CSS 使用css-loader
和style-loader
,但所有媒体查询都不起作用。我正在使用"webpack": "^3.4.1"
和。"css-loader": "^0.28.4"
"style-loader": "^0.18.2"
这是我的 Webpack 配置:
const ExtractTextPlugin = require('extract-text-webpack-plugin')
rules: [{
test: /\.css$/,
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader',
options: {
modules: true,
localIdentName: '[name]-[local]-[hash:base64:6]',
camelCase: true
}
}]
}]
...
plugins: [
new ExtractTextPlugin({
filename: 'style.[chunkhash:6].css',
allChunks: true
})
]
我的css文件是这样的:
.container{
position: relative;
margin: 30px 15px;
padding: 50px 15px;
background: #fff;
}
@media (max-width: 768px) {
.container{
background: #fbfbfb;
}
}
我正在用这样的React
代码导入这个 CSS 文件:
import styles from './Component.css'