rsnext/examples/custom-server-actionhero/config/routes.js
2018-02-27 13:16:17 +01:00

9 lines
160 B
JavaScript

exports['default'] = {
routes: (api) => {
return {
get: [
{ path: '/', matchTrailingPathParts: true, action: 'render' }
]
}
}
}