From b1bfc44147e41ca0c83772966c0c146df32b1c90 Mon Sep 17 00:00:00 2001 From: Nagy Viktor Date: Thu, 17 Oct 2024 15:42:41 +0200 Subject: [PATCH] fix: blank screen on content actions --- apps/sensenet/webpack.common.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/sensenet/webpack.common.js b/apps/sensenet/webpack.common.js index 982489870..12034282d 100644 --- a/apps/sensenet/webpack.common.js +++ b/apps/sensenet/webpack.common.js @@ -28,6 +28,9 @@ module.exports = { ], }, plugins: [ + new webpack.ProvidePlugin({ + "React": "react", + }), new webpack.EnvironmentPlugin({ APP_VERSION: require('./package.json').version, }),