- 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
14 lines
592 B
JavaScript
14 lines
592 B
JavaScript
"use strict";
|
|
if (process.env.NEXT_RUNTIME === 'edge') {
|
|
module.exports = require('next/dist/server/route-modules/pages-api/module.js');
|
|
} else {
|
|
if (process.env.NODE_ENV === 'development') {
|
|
module.exports = require('next/dist/compiled/next-server/pages-api.runtime.dev.js');
|
|
} else if (process.env.TURBOPACK) {
|
|
module.exports = require('next/dist/compiled/next-server/pages-api-turbo.runtime.prod.js');
|
|
} else {
|
|
module.exports = require('next/dist/compiled/next-server/pages-api.runtime.prod.js');
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=module.compiled.js.map
|