frontend-app-api: no longer reject core extension configuration

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-10-18 13:37:07 +02:00
parent 6d2258621f
commit 5aad4f7720
@@ -164,13 +164,6 @@ export function resolveAppNodeSpecs(options: {
for (const overrideParam of parameters) {
const extensionId = overrideParam.id;
// Prevent core parametrization
if (extensionId === 'core') {
throw new Error(
"A 'core' extension configuration was detected, but the core extension is not configurable",
);
}
const existingIndex = configuredExtensions.findIndex(
e => e.extension.id === extensionId,
);