mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(cli): fix autoprefixer plugin conditions (#12052)
This commit is contained in:
parent
a789418366
commit
47a3aea291
@ -14,11 +14,15 @@ function getPostcssPlugins(rootConfig) {
|
||||
const plugins = rootConfig.plugins || [];
|
||||
|
||||
if (Array.isArray(plugins)) {
|
||||
const hasPostcssPlugin = plugins.find(
|
||||
(plugin) =>
|
||||
plugin === 'autoprefixer' && plugin.postcssPlugin === 'autoprefixer'
|
||||
const hasAutoprefixerPlugin = plugins.find(
|
||||
(plugin) => {
|
||||
if (typeof plugin === 'object') {
|
||||
return plugin.postcssPlugin === 'autoprefixer';
|
||||
}
|
||||
return plugin === 'autoprefixer';
|
||||
}
|
||||
);
|
||||
if (hasPostcssPlugin) {
|
||||
if (hasAutoprefixerPlugin) {
|
||||
return plugins;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user