Commit 1ec76dbd authored by ChanHaeng Lee's avatar ChanHaeng Lee
Browse files
parent 71880e53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -425,7 +425,7 @@ jobs:
          | @fedify/express  | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/express]  | [npm][npm:@fedify/express]  |
          | @fedify/h3       | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/h3]       | [npm][npm:@fedify/h3]       |
          | @fedify/nestjs   | ${{ steps.versioning.outputs.version }} |                             | [npm][npm:@fedify/nestjs]   |
          | @fedify/nextjs   | ${{ steps.versioning.outputs.version }} |                             | [npm][npm:@fedify/nextjs]   |
          | @fedify/next     | ${{ steps.versioning.outputs.version }} |                             | [npm][npm:@fedify/next]     |
          | @fedify/postgres | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/postgres] | [npm][npm:@fedify/postgres] |
          | @fedify/redis    | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/redis]    | [npm][npm:@fedify/redis]    |
          | @fedify/sqlite   | ${{ steps.versioning.outputs.version }} | [JSR][jsr:@fedify/sqlite]   | [npm][npm:@fedify/sqlite]   |
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ The repository is organized as a monorepo with the following packages:
 -  *packages/postgres/*: PostgreSQL drivers (@fedify/postgres)
 -  *packages/redis/*: Redis drivers (@fedify/redis)
 -  *packages/nestjs/*: NestJS integration (@fedify/nestjs)
 -  *packages/nextjs/*: Next.js integration (@fedify/nextjs)
 -  *packages/next/*: Next.js integration (@fedify/next)
 -  *packages/sqlite/*: SQLite driver (@fedify/sqlite)
 -  *packages/testing/*: Testing utilities (@fedify/testing)
 -  *docs/*: Documentation built with Node.js and VitePress
+2 −2
Original line number Diff line number Diff line
@@ -8,9 +8,9 @@ Version 1.9.0

To be released.

### @fedify/nextjs
### @fedify/next

 -  Created [Next.js] integration as the *@fedify/nextjs* package.
 -  Created [Next.js] integration as the *@fedify/next* package.
      [[#313] by Chanhaeng Lee]

### @fedify/cli
+1 −1
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@ The repository is organized as a monorepo with the following packages:
 -  *packages/postgres/*: PostgreSQL drivers (@fedify/postgres) for Fedify.
 -  *packages/redis/*: Redis drivers (@fedify/redis) for Fedify.
 -  *packages/nestjs/*: NestJS integration (@fedify/nestjs) for Fedify.
 -  *packages/nextjs/*: Next.js integration (@fedify/nextjs) for Fedify.
 -  *packages/next/*: Next.js integration (@fedify/next) for Fedify.
 -  *packages/sqlite/*: SQLite driver (@fedify/sqlite) for Fedify.
 -  *packages/testing/*: Testing utilities (@fedify/testing) for Fedify.
 -  *docs/*: The Fedify docs.  The docs are built with [Node.js] and
+2 −2
Original line number Diff line number Diff line
@@ -486,7 +486,7 @@ Next.js
*This API is available since Fedify 1.9.0.*

[Next.js] is a React framework that enables you to build server-rendered
and statically generated web applications.  Fedify has the `@fedify/nextjs`
and statically generated web applications.  Fedify has the `@fedify/next`
module that provides a middleware to integrate Fedify with Next.js.  Create
an app with the following command using the Fedify CLI:

@@ -510,7 +510,7 @@ from the Next.js framework:


~~~~ typescript
import { fedifyWith } from "@fedify/nextjs";
import { fedifyWith } from "@fedify/next";
import federation from "./federation";

export default fedifyWith(federation)(
Loading