css minification error: cannot read property type of undefined (vue项目打包)
这个问题出现的可能原因是因为你的css 某些属性缺失导致比如说transform:rotate3d(0);这个在页面中显示是没有问题的,但是打包的时候就会出问题此时应该改为transform:rotate3d(0,0,0,0);
·
这个问题出现的可能原因是因为你的css 某些属性缺失导致
比如说 transform:rotate3d(0);
这个在页面中显示是没有问题的,但是打包的时候就会出问题
此时应该改为 transform:rotate3d(0,0,0,0);
更多推荐
已为社区贡献3条内容
所有评论(0)