fix: respect "none" value for plugins.slots.memory
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),
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue