mirror of
https://github.com/eggjs/egg.git
synced 2024-12-04 07:14:30 +00:00
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = () => {
|
|
return require('koa-static')(path.join(process.cwd(), 'run/doctools/public'));
|
|
};
|