webpack 引入css编译问题

// 配置loader,在webpack.config.js中
module:{
     rules:[
         {
             test:/\.css$/i,
             //使用style-loader css-loader 从右往左生效
             use:['style-loader','css-loader']
         }
     ]
 },

You may need an appropriate loader to handle this file type
学习webpack入门时出现的问题,记录一下,路过的朋友,看看就好

相关文章:

  • 2022-12-23
  • 2021-04-07
  • 2021-05-25
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
  • 2021-11-21
  • 2020-07-11
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案