fix: respect "none" value for plugins.slots.memory
This commit is contained in:
committed by
Peter Steinberger
parent
b6591c3f69
commit
c4c01089ab
@@ -58,7 +58,7 @@ export const normalizePluginsConfig = (
|
||||
deny: normalizeList(config?.deny),
|
||||
loadPaths: normalizeList(config?.load?.paths),
|
||||
slots: {
|
||||
memory: memorySlot ?? defaultSlotIdForKey("memory"),
|
||||
memory: memorySlot === undefined ? defaultSlotIdForKey("memory") : memorySlot,
|
||||
},
|
||||
entries: normalizePluginEntries(config?.entries),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user