We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd32fad commit ae24ec2Copy full SHA for ae24ec2
src/runtime/addStyles.js
@@ -278,7 +278,8 @@ function addStyle(obj, options) {
278
result =
279
typeof options.transform === 'function'
280
? options.transform(obj.css)
281
- : options.transform.default(obj.css);
+ : // ES3 compatibility
282
+ options.transform['default'](obj.css);
283
284
if (result) {
285
// If transform returns a value, use that instead of the original css.
0 commit comments