- 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
12 lines
391 B
TypeScript
12 lines
391 B
TypeScript
import type webpack from 'webpack';
|
|
type MetadataRouteLoaderOptions = {
|
|
filePath: string;
|
|
isDynamicRouteExtension: '1' | '0';
|
|
};
|
|
export declare function getFilenameAndExtension(resourcePath: string): {
|
|
name: string;
|
|
ext: string;
|
|
};
|
|
declare const nextMetadataRouterLoader: webpack.LoaderDefinitionFunction<MetadataRouteLoaderOptions>;
|
|
export default nextMetadataRouterLoader;
|