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 22547fb commit e784f0eCopy full SHA for e784f0e
src/AssetConfig.php
@@ -252,8 +252,8 @@ protected function resolveExtends()
252
if (!$parentConfig) {
253
return $config;
254
}
255
- $config['files'] = array_merge($parentConfig['files'], $config['files']);
256
- $config['filters'] = array_merge($parentConfig['filters'], $config['filters']);
+ $config['files'] = array_unique(array_merge($parentConfig['files'], $config['files']));
+ $config['filters'] = array_unique(array_merge($parentConfig['filters'], $config['filters']));
257
$config['theme'] = $parentConfig['theme'] || $config['theme'];
258
259
};
0 commit comments