-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
37 lines (37 loc) · 782 Bytes
/
Copy pathwrangler.jsonc
File metadata and controls
37 lines (37 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "tinymind",
"main": ".open-next/worker.js",
"compatibility_date": "2026-06-19",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"directory": ".open-next/assets",
"binding": "ASSETS"
},
"observability": {
"enabled": true
},
"routes": [
{
"pattern": "tinymind.me",
"custom_domain": true
},
{
"pattern": "www.tinymind.me",
"custom_domain": true
}
],
"vars": {
"ALLOWED_ORIGIN": "https://tinymind.me",
"NEXTAUTH_URL": "https://tinymind.me",
"NEXT_PUBLIC_BASE_URL": "https://tinymind.me"
},
"secrets": {
"required": [
"GITHUB_ID",
"GITHUB_SECRET",
"NEXTAUTH_SECRET",
"GITHUB_TOKEN"
]
}
}