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.

11 lines 253 B
export function hmrPing() { return async (ctx, next) => { if (ctx.get('accept') === 'text/x-farm-ping') { ctx.status = 204; } else { await next(); } }; } //# sourceMappingURL=hmrPing.js.map