我正在尝试更新到 webpack 2,但我卡在 css 加载后阶段。这是我的相关代码:
{
test: /.scss$/,
loader: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader!postcss-loader!sass-loader?outputStyle=expanded&sourceComments=true'}),
exclude: //custom-apps/|future/
},
{
test: /.scss$/,
loader: 'style-loader!css-loader?modules&localIdentName=[local]___[hash:base64:5]&importLoaders=2!postcss-loader!sass-loader?outputStyle=expanded&sourceComments=true',
include: //custom-apps/|future/
},
我得到的错误:
PostCSS Config could not be loaded. Please check your PostCSS Config.
在项目根路径中添加本地文件
postcss.config.js
内容:
module.exports = {
importLoaders: 1,
};
为我做了。
还把 !postcss-loader?importLoaders: 1
在我的示例代码中,我认为应该可以工作。