create-kvell-app
Version:
Command line tool to setup Node.js applications
10 lines (8 loc) • 348 B
JavaScript
/**
* `globalMiddlewares` handles all the middlewares/functions/configurations that you need
* to declare/use in your application globally.
* @param {import ("kvell-scripts").KvellAppObject} app
* @param {import ("kvell-scripts").KvellServerObject} server
*/
const globalMiddlewares = (app, server) => {};
module.exports = globalMiddlewares;