Skip to content

Commit 580344e

Browse files
authored
fix(generators): Fix channel/service configuration order for Koa based apps
1 parent e01eb6a commit 580344e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/generators/src/app/templates/app.tpl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ ${
3939
cors: {
4040
origin: app.get('origins')
4141
}
42-
}))
43-
app.configure(channels)`
42+
}))`
4443
: ''
4544
}
4645
app.configure(services)
46+
app.configure(channels)
4747
4848
4949
// Register hooks that run on all service methods

0 commit comments

Comments
 (0)