【发布时间】:2020-08-17 21:41:23
【问题描述】:
我有使用关键帧的 scss 脚本。
BundleConfig 然后在尝试缩小生成的 css 时返回错误:
Minification failed. Returning unminified contents.
(8,9984): run-time error CSS1019: Unexpected token, found '}'
这是由于这两行:
@-webkit-keyframes adjust-hue {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes adjust-hue {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
如何修复它以便缩小工作?
【问题讨论】:
-
有人可以帮忙吗?
标签: sass css-animations bundling-and-minification