UNPKG

@limejs/core

Version:
9 lines (7 loc) 223 B
const serve = require('koa-static') const path = require('path') module.exports = function (app, options) { app.middleware(serve(path.join(app.config.paths.root, './public'), { maxage: 365 * 24 * 3600 * 1000 })) }