metatron-open-seo/web/wrangler.jsonc
Ben Senescu 23fb595755
chore: rename references to open-rank back to open-seo (#35)
* docs: move project docs into docs directory

* docs: rebrand landing site as OpenSEO

* fix: update remaining OpenSEO backlinks links

* Change landing page copy + format

* website: add www custom domain route

* Tweak README

* save
2026-03-16 18:58:44 -04:00

31 lines
671 B
JSON

{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "open-seo-landing",
"compatibility_date": "2026-02-19",
"compatibility_flags": ["nodejs_compat"],
"main": "@tanstack/react-start/server-entry",
"assets": {
"directory": "./dist/client",
"html_handling": "drop-trailing-slash",
},
"workers_dev": true,
"preview_urls": true,
"routes": [
{
"pattern": "openseo.so",
"custom_domain": true,
},
{
"pattern": "www.openseo.so",
"custom_domain": true,
},
],
"env": {
"preview": {
"name": "open-seo-landing-preview",
"workers_dev": true,
"preview_urls": true,
},
},
}