UNPKG
@fitch-digital/fitch-create-app
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Boilerplate templates for FITCH projects
@fitch-digital/fitch-create-app
/
templates
/
react
/
src
/
server
/
routes
/
index.js
25 lines
(23 loc)
•
449 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module.exports = [ {
method
: '
GET
',
path
: '/
api
/
test
',
handler
: () =>
{
return
{ type:
'json'
, message:
'test'
, }; }, }, {
method
: '
GET
',
path
: '/
{param*}
', handler: { directory: { path: '
.
', redirectToSlash: true, index: true, }, }, }, ];