This commit is contained in:
robin
2022-04-05 02:52:41 +08:00
commit a593253a63
31 changed files with 449 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
'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')),
};