Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/e2e/app-pages-router/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"r2_buckets": [
{
"binding": "NEXT_INC_CACHE_R2_BUCKET",
"bucket_name": "<BUCKET_NAME>"
"bucket_name": "cache"
}
],
"services": [
Expand Down
2 changes: 1 addition & 1 deletion examples/e2e/app-router/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"r2_buckets": [
{
"binding": "NEXT_INC_CACHE_R2_BUCKET",
"bucket_name": "<BUCKET_NAME>"
"bucket_name": "cache"
}
],
"services": [
Expand Down
2 changes: 1 addition & 1 deletion examples/e2e/experimental/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"r2_buckets": [
{
"binding": "NEXT_INC_CACHE_R2_BUCKET",
"bucket_name": "<BUCKET_NAME>"
"bucket_name": "cache"
}
],
"services": [
Expand Down
2 changes: 1 addition & 1 deletion examples/e2e/pages-router/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"r2_buckets": [
{
"binding": "NEXT_INC_CACHE_R2_BUCKET",
"bucket_name": "<BUCKET_NAME>"
"bucket_name": "cache"
}
],
"services": [
Expand Down
2 changes: 1 addition & 1 deletion examples/overrides/r2-incremental-cache/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"r2_buckets": [
{
"binding": "NEXT_INC_CACHE_R2_BUCKET",
"bucket_name": "NEXT_INC_CACHE_R2_BUCKET"
"bucket_name": "cache"
}
]
},
Expand Down
4 changes: 2 additions & 2 deletions packages/cloudflare/templates/wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
// See https://opennext.js.org/cloudflare/caching
{
"binding": "NEXT_INC_CACHE_R2_BUCKET",
// Create a bucket before deploying
// Create the bucket before deploying
// See https://developers.cloudflare.com/workers/wrangler/commands/#r2-bucket-create
"bucket_name": "<BUCKET_NAME>"
"bucket_name": "cache"
}
]
}