Skip to content

Commit 74618f4

Browse files
feat(blog): pages wip
1 parent 2719146 commit 74618f4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+8650
-0
lines changed

apps/blog-bff/src/main.ts

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { HTTPException } from 'hono/http-exception';
55
import { articles } from '@angular-love/blog-bff/articles/api';
66
import { authors } from '@angular-love/blog-bff/authors/api';
77
import { newsletter } from '@angular-love/blog-bff/newsletter/api';
8+
import { pages } from '@angular-love/blog-bff/pages/api';
89

910
const app = new Hono();
1011

@@ -13,6 +14,7 @@ app.use('*', cors());
1314
app.route('/articles', articles);
1415
app.route('/authors', authors);
1516
app.route('/newsletter', newsletter);
17+
app.route('/pages', pages);
1618

1719
app.onError((err, c) => {
1820
console.error(err);

0 commit comments

Comments
 (0)