-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
31 lines (30 loc) · 793 Bytes
/
wrangler.jsonc
File metadata and controls
31 lines (30 loc) · 793 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
// SPDX-FileCopyrightText: © 2025 Logan Magee
//
// SPDX-License-Identifier: AGPL-3.0-only
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "console",
"compatibility_date": "2025-08-12",
"assets": {
"directory": "./dist/console/browser",
"not_found_handling": "single-page-application",
},
"env": {
"production": {
"routes": [
{
"pattern": "console.accrescent.app",
"custom_domain": true,
},
],
},
"testing": {
"routes": [
{
"pattern": "testing.console.accrescent.app",
"custom_domain": true,
},
],
},
},
}