UNPKG

@farmfe/core

Version:

Farm is a extremely fast web build tool written in Rust. Farm can start a project in milliseconds and perform HMR within 10ms, making it much faster than similar tools like webpack and vite.

7 lines (6 loc) 229 B
/** * Lazy compilation middleware. Using the same logic as HMR middleware */ import { Middleware } from 'koa'; import { Server } from '../index.js'; export declare function lazyCompilation(devSeverContext: Server): Middleware;