Files
bamboo/config/middleware.js
T
robin a593253a63 up
2022-04-05 02:52:41 +08:00

10 lines
220 B
JavaScript

'use strict';
import path from 'path';
import bodyParser from 'koa-bodyparser';
import staticFile from 'koa-static';
export default {
bodyParser: bodyParser(),
staticFile: staticFile(path.resolve('pbulic')),
};