【此错误解决方法】ERROR in ./src/assets/styles/test.css 1:4
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.
引入的时候,加上【'file-loader!】和【'css-loader!】
import 'file-loader!./assets/image/kuli.jpg'
import 'css-loader!./assets/styles/test.css'
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.
引入的时候,加上【'file-loader!】和【'css-loader!】
import 'file-loader!./assets/image/kuli.jpg'
import 'css-loader!./assets/styles/test.css'
2020-06-21
真的全是坑,学习5分钟,踩坑两小时。很多人都说是更新版本的问题,确实是,但是,对应学习者来说也确实坑,明明一样的代码,就是不行。
2020-06-21
Error: Cannot find module 'html-webpack-plugin'
npm i html-webpack-plugin一直报错,这是什么鬼毛病
npm i html-webpack-plugin一直报错,这是什么鬼毛病
2020-06-09
老师的课程有些地方已经陈旧了,我在学习的时候用的是现在最新的webpack版本,我的项目源码提交到github上供大家参考
https://github.com/carrieguo/vue.js-todolist
https://github.com/carrieguo/vue.js-todolist
2020-03-19