UNPKG

anchundan

Version:
8 lines 260 B
const static = require('koa-static'); const path = require('path'); module.exports = (config)=>{ let {root,option} = config; root = root || path.resolve( process.getRoot() ,'./src/static'); option = option || {}; return static(root,option); };