UNPKG

es-dev-server

Version:

Development server for modern web apps

12 lines (11 loc) 378 B
import { Middleware } from 'koa'; interface HistoryAPIFallbackMiddlewareConfig { appIndex: string; appIndexDir: string; } /** * Serves index.html when a non-file request within the scope of the app index is made. * This allows SPA routing. */ export declare function createHistoryAPIFallbackMiddleware(cfg: HistoryAPIFallbackMiddlewareConfig): Middleware; export {};