File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ Configure your `wrangler.json` for Cloudflare Workers:
111
111
"name" : " my-rivetkit-app" ,
112
112
"main" : " src/index.ts" ,
113
113
"compatibility_date" : " 2025-01-20" ,
114
- "compatibility_flags" : [" nodejs_compat" , " enable_request_signal " ],
114
+ "compatibility_flags" : [" nodejs_compat" ],
115
115
"migrations" : [
116
116
{
117
117
"tag" : " v1" ,
@@ -135,10 +135,6 @@ Configure your `wrangler.json` for Cloudflare Workers:
135
135
}
136
136
```
137
137
138
- <Note >
139
- ` enable_request_signal ` compatibility flags is required if using SSE. Without it, SSE connections will never abort.
140
- </Note >
141
-
142
138
Start the development server:
143
139
144
140
``` sh
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ Update your `wrangler.json` configuration to support `ACTOR_DO` and `ACTOR_KV` b
83
83
"name" : " my-rivetkit-app" ,
84
84
"main" : " src/index.ts" ,
85
85
"compatibility_date" : " 2025-01-20" ,
86
- "compatibility_flags" : [" nodejs_compat" , " enable_request_signal " ],
86
+ "compatibility_flags" : [" nodejs_compat" ],
87
87
"migrations" : [
88
88
{
89
89
"tag" : " v1" ,
@@ -107,10 +107,6 @@ Update your `wrangler.json` configuration to support `ACTOR_DO` and `ACTOR_KV` b
107
107
}
108
108
```
109
109
110
- <Note >
111
- ` enable_request_signal ` compatibility flags is required if using SSE. Without it, SSE connections will never abort.
112
- </Note >
113
-
114
110
** Configuration Requirements:**
115
111
116
112
- ` ACTOR_DO ` - Durable Object binding for actor persistence
You can’t perform that action at this time.
0 commit comments