当前位置: 首页 > 工具软件 > Loaders.css > 使用案例 >

BREAKING CHANGE: It's no longer allowed to omit the '-loader' suffix when using loaders.

柴昆杰
2023-12-01

BREAKING CHANGE: It’s no longer allowed to omit the ‘-loader’ suffix when using loaders.
You need to specify ‘css-loader’ instead of ‘css’,
原因:webpack新版本不支持缩写,将提示的webpack.config.js位置改成全写

    {
        test: /\.less$/,
        loader: 'style-loader!css-loader!less-loader'
      }
 类似资料:

相关阅读

相关文章

相关问答