http-proxy-middleware
Version:
The one-liner node.js proxy middleware for connect, express and browser-sync
8 lines (7 loc) • 303 B
TypeScript
/**
* Create rewrite function, to cache parsed rewrite rules.
*
* @param {Object} rewriteConfig
* @return {Function} Function to rewrite paths; This function should accept `path` (request.url) as parameter
*/
export declare function createPathRewriter(rewriteConfig: any): (...args: any[]) => any;