@lark-apaas/fullstack-rspack-preset 1.0.9 → 1.0.10
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.
- package/lib/overlay/index.js +2 -2
- package/package.json +1 -1
package/lib/overlay/index.js
CHANGED
|
@@ -230,7 +230,7 @@ function render() {
|
|
|
230
230
|
sendPostMessage({
|
|
231
231
|
type: 'RenderError',
|
|
232
232
|
location: window.location.href,
|
|
233
|
-
|
|
233
|
+
data: currentMode,
|
|
234
234
|
});
|
|
235
235
|
// 发送编译错误
|
|
236
236
|
logError(['Compile Error', currentCompileErrorMessage], currentMode);
|
|
@@ -242,7 +242,7 @@ function render() {
|
|
|
242
242
|
sendPostMessage({
|
|
243
243
|
type: 'RenderError',
|
|
244
244
|
location: window.location.href,
|
|
245
|
-
|
|
245
|
+
data: currentMode,
|
|
246
246
|
});
|
|
247
247
|
// 发送运行错误
|
|
248
248
|
logError(['Uncaught Render Error', ...currentRuntimeErrors], currentMode);
|