10 lines
220 B
JavaScript
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')),
|
|
};
|
|
|