@openremote/util 1.10.0-snapshot.20251016093424 → 1.10.0-snapshot.20251019170031

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/webpack.util.js +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openremote/util",
3
- "version": "1.10.0-snapshot.20251016093424",
3
+ "version": "1.10.0-snapshot.20251019170031",
4
4
  "description": "Build Util",
5
5
  "author": "OpenRemote",
6
6
  "main": "webpack.util.js",
package/webpack.util.js CHANGED
@@ -188,6 +188,14 @@ function getAppConfig(mode, isDevServer, dirname, managerUrl, keycloakUrl, port)
188
188
 
189
189
  config.devtool = !isDevServer ? false : "inline-source-map";
190
190
  config.devServer = {
191
+ client: {
192
+ overlay: {
193
+ runtimeErrors: (e) => {
194
+ console.error(e);
195
+ return false;
196
+ }
197
+ }
198
+ },
191
199
  historyApiFallback: {
192
200
  index: "/" + dirname.split(path.sep).slice(-1)[0] + "/",
193
201
  },