- 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
20 lines
725 B
JavaScript
20 lines
725 B
JavaScript
"use strict";
|
|
const ERROR_MESSAGE = 'Internal Error: do not use legacy react-dom/server APIs. If you encountered this error, please open an issue on the Next.js repo.';
|
|
function error() {
|
|
throw new Error(ERROR_MESSAGE);
|
|
}
|
|
var b;
|
|
if (process.env.NODE_ENV === 'production') {
|
|
b = require('next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.js');
|
|
} else {
|
|
b = require('next/dist/compiled/react-dom/cjs/react-dom-server.edge.development.js');
|
|
}
|
|
exports.version = b.version;
|
|
exports.renderToReadableStream = b.renderToReadableStream;
|
|
exports.renderToString = error;
|
|
exports.renderToStaticMarkup = error;
|
|
if (b.resume) {
|
|
exports.resume = b.resume;
|
|
}
|
|
|
|
//# sourceMappingURL=react-dom-server-edge.js.map
|