* 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
31 lines
671 B
JSON
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,
|
|
},
|
|
},
|
|
}
|