webpack 打包css时提示Unexpected character '@',如下图:
但是,我是@font-face定义字体的写法报错,并非路径问题,目前解决方法就是不要解析这个css文件:
原来的引用:
import 'swiper/swiper-bundle.css'
修改为:
import 'css-loader!swiper/swiper-bundle.css'
webpack 打包css时提示Unexpected character '@',如下图:
但是,我是@font-face定义字体的写法报错,并非路径问题,目前解决方法就是不要解析这个css文件:
原来的引用:
import 'swiper/swiper-bundle.css'
修改为:
import 'css-loader!swiper/swiper-bundle.css'