问题描述:
使用3.3.0版本的amis,然后import 'amis/sdk/sdk.css' 之后
截图:
可以发现
(Emitted value instead of an instance of Error) autoprefixer: D:\work\web\open-platform-h5\node_modules\amis\sdk\sdk.css:301:1055757: Replace fill-available to stretch, because spec had been changed
解决办法:
找到node_modules下面的对应的sdk.css文件,然后将里面的所有fill-available替换成stretch,可以不报错,正常运行了,但是还有其他解决办法吗
3条答案
按热度按时间tvokkenx1#
https://stackoverflow.com/questions/63124145/suppress-eslint-warnings-from-imported-node-modules-css
k4aesqcs2#
// eslint-disable-next-line
加上禁止eslint 检查
lc8prwob3#
// eslint-disable-next-line 加上禁止eslint 检查
这样控制台还是有警告的,你上面提到的stackoverflow的文章我之前也刷到过,不过我觉得是不是源码里去改比较好呢