UNPKG

@fitch-digital/fitch-create-app

Version:

Boilerplate templates for FITCH projects

25 lines (23 loc) 449 B
module.exports = [ { method: 'GET', path: '/api/test', handler: () => { return { type: 'json', message: 'test', }; }, }, { method: 'GET', path: '/{param*}', handler: { directory: { path: '.', redirectToSlash: true, index: true, }, }, }, ];