this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix e2e tests on the `api` fixture

+5 -3
+1
.gitignore
··· 3 3 4 4 output 5 5 .worker-next 6 + .save.next 6 7 dist
+1 -1
builder/package.json
··· 4 4 "build": "tsup", 5 5 "build:watch": "tsup --watch src" 6 6 }, 7 - "bin": "dist/index.js", 7 + "bin": "dist/index.mjs", 8 8 "files": [ 9 9 "dist" 10 10 ],
+3 -2
next/api/wrangler.toml
··· 1 1 #:schema node_modules/wrangler/config-schema.json 2 2 name = "api" 3 3 main = ".worker-next/index.mjs" 4 - assets = ".worker-next/assets" 5 4 compatibility_date = "2024-08-29" 6 5 compatibility_flags = ["nodejs_compat_v2"] 7 6 workers_dev = true 8 - minify = false # let's disable minification for easier debuggability 7 + minify = false # let's disable minification for easier debuggability 8 + 9 + experimental_assets = { directory = ".worker-next/assets", binding = "ASSETS" } 9 10 10 11 # The aliases below should not be needed (we don't want users to have to define the aliases themselves) 11 12 [alias]