2017-12-17 01:41:22 +09:00
|
|
|
/**
|
2018-04-13 06:06:18 +09:00
|
|
|
* Docs
|
2017-12-17 01:41:22 +09:00
|
|
|
*/
|
|
|
|
|
2018-04-09 18:54:03 +09:00
|
|
|
import * as path from 'path';
|
2018-04-13 06:06:18 +09:00
|
|
|
import * as Router from 'koa-router';
|
|
|
|
import * as send from 'koa-send';
|
2017-12-17 01:41:22 +09:00
|
|
|
|
2018-04-09 18:54:03 +09:00
|
|
|
const docs = path.resolve(`${__dirname}/../../client/docs/`);
|
2018-03-29 20:50:45 +09:00
|
|
|
|
2018-04-13 06:06:18 +09:00
|
|
|
const router = new Router();
|
2017-12-17 01:41:22 +09:00
|
|
|
|
2018-04-13 06:06:18 +09:00
|
|
|
router.get('/assets', async ctx => {
|
|
|
|
await send(ctx, `${docs}/assets`);
|
|
|
|
});
|
2017-12-17 01:41:22 +09:00
|
|
|
|
2018-04-13 06:06:18 +09:00
|
|
|
router.get(/^\/([a-z_\-\/]+?)$/, async ctx => {
|
|
|
|
await send(ctx, `${docs}/${ctx.params[0]}.html`);
|
|
|
|
});
|
2017-12-17 01:41:22 +09:00
|
|
|
|
2018-04-13 06:06:18 +09:00
|
|
|
module.exports = router;
|