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.

8 lines 273 B
import { default as koaCors } from '@koa/cors'; export function cors(devSeverContext) { const { config } = devSeverContext; if (!config.cors) return; return koaCors(typeof config.cors === 'boolean' ? {} : config.cors); } //# sourceMappingURL=cors.js.map