You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/with-rspack/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
> [!WARNING]
4
4
> This example uses a package is currently experimental and actively developed and supported in Next.js’ `canary` branch. To use this, you must be using a published canary build of Next.js.
5
5
6
-
This example demonstrates using Rspack in place of webpack in Next.js using `@next/plugin-rspack`.
6
+
This example demonstrates using Rspack in place of webpack in Next.js using `next-rspack`.
Copy file name to clipboardExpand all lines: packages/next-rspack/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# @next/plugin-rspack (EXPERIMENTAL)
1
+
# next-rspack (EXPERIMENTAL)
2
2
3
3
> [!WARNING]
4
4
> This package is currently experimental and actively developed and supported in Next.js’ `canary` branch. To use this, you must be using a published canary build of Next.js.
@@ -8,21 +8,21 @@ This plugin allows you to use [Rspack](https://rspack.dev) in place of webpack w
8
8
## Installation
9
9
10
10
```
11
-
npm install @next/plugin-rspack
11
+
npm install next-rspack
12
12
```
13
13
14
14
or
15
15
16
16
```
17
-
yarn add @next/plugin-rspack
17
+
yarn add next-rspack
18
18
```
19
19
20
20
## Usage
21
21
22
22
Create or update a `next.config.js`/`next.config.ts` and wrap your existing configuration:
0 commit comments