Skip to content

Commit 4b94bc4

Browse files
committed
feat: add ssr route for testing
1 parent 67a08fa commit 4b94bc4

File tree

1 file changed

+7
-0
lines changed
  • demos/nx-next-monorepo-demo/apps/demo-monorepo/pages/api

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
2+
3+
export default function handler(req, res) {
4+
res.status(200).json({
5+
body: 'Hello world',
6+
});
7+
}

0 commit comments

Comments
 (0)