Skip to content

Commit 7bed204

Browse files
committed
minor cleanup
1 parent 06a41be commit 7bed204

File tree

4 files changed

+2
-11
lines changed

4 files changed

+2
-11
lines changed

TODO.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DONE:
1313

1414
## Install
1515

16-
- `npx create-next-app@latest <app-name> --use-npm` (use npm to avoid symlinks)
16+
- `npx create-next-app@latest <app-name>`
1717

1818
- add the following devDependency to the package.json:
1919

@@ -30,8 +30,6 @@ DONE:
3030

3131
compatibility_date = "2024-08-29"
3232
compatibility_flags = ["nodejs_compat_v2"]
33-
workers_dev = true
34-
minify = false
3533

3634
# Use the new Workers + Assets to host the static frontend files
3735
experimental_assets = { directory = ".worker-next/assets", binding = "ASSETS" }

builder/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
- add the following `devDependency` to the `package.json`:
66

77
```json
8-
"node-url": "npm:url@^0.11.4",
9-
"wrangler": "^3.77.0"
8+
"wrangler": "^3.78.6"
109
```
1110

1211
- Execute `npx @flarelabs-net/builder@latest` in your app folder
@@ -22,8 +21,6 @@
2221

2322
compatibility_date = "2024-08-29"
2423
compatibility_flags = ["nodejs_compat_v2"]
25-
workers_dev = true
26-
minify = false
2724

2825
# Use the new Workers + Assets to host the static frontend files
2926
experimental_assets = { directory = ".worker-next/assets", binding = "ASSETS" }

examples/api/wrangler.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@ name = "api"
33
main = ".worker-next/index.mjs"
44
compatibility_date = "2024-09-16"
55
compatibility_flags = ["nodejs_compat_v2"]
6-
workers_dev = true
7-
minify = false # let's disable minification for easier debuggability
86

97
experimental_assets = { directory = ".worker-next/assets", binding = "ASSETS" }

examples/create-next-app/wrangler.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ main = ".worker-next/index.mjs"
44

55
compatibility_date = "2024-08-29"
66
compatibility_flags = ["nodejs_compat_v2"]
7-
workers_dev = true
8-
minify = false
97

108
# Use the new Workers + Assets to host the static frontend files
119
experimental_assets = { directory = ".worker-next/assets", binding = "ASSETS" }

0 commit comments

Comments
 (0)