rsnext/examples/custom-server-actionhero/config/routes.js
2020-05-18 15:24:37 -04:00

7 lines
146 B
JavaScript

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