mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:11:20 +08:00
ADD ability for users to disable auto refs by setting the same key to null
This commit is contained in:
parent
e6bd4fe838
commit
48ca052263
@ -70,6 +70,10 @@ async function getManagerWebpackConfig(options, presets) {
|
||||
|
||||
if (definedRefs) {
|
||||
Object.entries(definedRefs).forEach(([key, value]) => {
|
||||
if (value === null) {
|
||||
delete refs[key];
|
||||
}
|
||||
|
||||
const url = typeof value === 'string' ? value : value.url;
|
||||
const rest =
|
||||
typeof value === 'string'
|
||||
|
Loading…
x
Reference in New Issue
Block a user