forked from FoundKeyGang/FoundKey
oops
This commit is contained in:
parent
af1a533d13
commit
d68cc702a5
2 changed files with 5 additions and 3 deletions
|
@ -4,18 +4,20 @@
|
|||
|
||||
import * as express from 'express';
|
||||
|
||||
const docs = `${__dirname}/../../client/docs/`;
|
||||
|
||||
/**
|
||||
* Init app
|
||||
*/
|
||||
const app = express();
|
||||
app.disable('x-powered-by');
|
||||
|
||||
app.use('/assets', express.static(`${__dirname}/assets`));
|
||||
app.use('/assets', express.static(`${docs}/assets`));
|
||||
|
||||
/**
|
||||
* Routing
|
||||
*/
|
||||
app.get(/^\/([a-z_\-\/]+?)$/, (req, res) =>
|
||||
res.sendFile(`${__dirname}/${req.params[0]}.html`));
|
||||
res.sendFile(`${docs}/${req.params[0]}.html`));
|
||||
|
||||
module.exports = app;
|
|
@ -17,7 +17,7 @@ const client = `${__dirname}/../../client/`;
|
|||
const app = express();
|
||||
app.disable('x-powered-by');
|
||||
|
||||
app.use('/docs', require('./docs/server'));
|
||||
app.use('/docs', require('./docs'));
|
||||
|
||||
app.use(bodyParser.urlencoded({ extended: true }));
|
||||
app.use(bodyParser.json({
|
||||
|
|
Loading…
Reference in a new issue