- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
15 lines
534 B
JavaScript
15 lines
534 B
JavaScript
"use strict";
|
|
let ReactDOMServer;
|
|
try {
|
|
ReactDOMServer = require('react-dom/server.edge');
|
|
} catch (error) {
|
|
if (error.code !== 'MODULE_NOT_FOUND' && error.code !== 'ERR_PACKAGE_PATH_NOT_EXPORTED') {
|
|
throw error;
|
|
}
|
|
// In React versions without react-dom/server.edge, the browser build works in Node.js.
|
|
// The Node.js build does not support renderToReadableStream.
|
|
ReactDOMServer = require('react-dom/server.browser');
|
|
}
|
|
module.exports = ReactDOMServer;
|
|
|
|
//# sourceMappingURL=ReactDOMServerPages.js.map
|