You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Hint for esbuild that we are targeting legacy browsers when minifying CSS.
170
+
// Full CSS compat table available at https://github.com/evanw/esbuild/blob/78e04680228cf989bdd7d471e02bbc2c8d345dc9/internal/compat/css_table.go
171
+
// But note that only the `HexRGBA` feature affects the minify outcome.
172
+
// HSL & rebeccapurple values will be minified away regardless the target.
173
+
// So targeting `chrome61` suffices to fix the compatibility issue.
174
+
config.build.cssTarget='chrome61'
175
+
}
166
176
}
167
177
168
-
if(!config.build.cssTarget){
169
-
// Hint for esbuild that we are targeting legacy browsers when minifying CSS.
170
-
// Full CSS compat table available at https://github.com/evanw/esbuild/blob/78e04680228cf989bdd7d471e02bbc2c8d345dc9/internal/compat/css_table.go
171
-
// But note that only the `HexRGBA` feature affects the minify outcome.
172
-
// HSL & rebeccapurple values will be minified away regardless the target.
173
-
// So targeting `chrome61` suffices to fix the compatibility issue.
0 commit comments