What
Claim each Conduction property in Google Search Console and Bing Webmaster Tools, generate the verification tokens, and drop them into the matching docusaurus.config.js files. Preset 3.6.0+ already accepts the tokens via a searchConsoleVerification option and emits the right <meta> tags automatically; we just need real tokens.
Why
Without verified properties:
- We can't see Search Console crawl errors, coverage reports, or CWV field data per property.
- We can't submit sitemaps to Bing through the console UI.
- We can't access Bing AI Performance reports (the new dashboard that shows citation counts from Copilot / ChatGPT Search / Perplexity).
- We can't see search-query data (which terms bring traffic to which app).
The SEO baseline campaign shipped everything except this. Tokens are the last gate.
Properties to claim (18 total)
| Property |
URL |
Owner |
| Marketing site |
https://www.conduction.nl |
ops |
| opencatalogi docs |
https://opencatalogi.conduction.nl |
ops |
| openregister docs |
https://openregister.conduction.nl |
ops |
| openconnector docs |
https://openconnector.conduction.nl |
ops |
| docudesk docs |
https://docudesk.conduction.nl |
ops |
| mydash docs |
https://mydash.conduction.nl |
ops |
| zaakafhandelapp docs |
https://zaakafhandelapp.conduction.nl |
ops |
| pipelinq docs |
https://pipelinq.conduction.nl |
ops |
| procest docs |
https://procest.conduction.nl |
ops |
| decidesk docs |
https://decidesk.conduction.nl |
ops |
| softwarecatalog docs |
https://softwarecatalog.conduction.nl |
ops |
| scholiq docs |
https://scholiq.conduction.nl |
ops |
| nldesign docs |
https://nldesign.conduction.nl |
ops |
| shillinq docs |
https://shillinq.conduction.nl |
ops |
| openbuilt docs |
https://openbuilt.conduction.nl |
ops |
| doriath docs |
https://doriath.conduction.nl |
ops |
| app-versions docs |
https://app-versions.conduction.nl |
ops |
| larpingapp docs |
https://larpingapp.conduction.nl |
ops |
Per-property steps
- Google Search Console: https://search.google.com/search-console, "Add property" → URL prefix → paste the property URL → choose HTML tag verification. Copy the value from
<meta name="google-site-verification" content="..." />.
- Bing Webmaster Tools: https://www.bing.com/webmasters, "Add a site" → URL prefix → paste the property URL → choose Option 1 (HTML Meta Tag). Copy the value from
<meta name="msvalidate.01" content="..." />.
- (Optional) DuckDuckGo doesn't have a console; Bing feeds it.
- (Optional) Yandex Webmaster and Pinterest are supported by the preset too but lower priority.
Where the tokens go
Each consuming site's docusaurus.config.js has a scaffold block. For conduction-website it's at line ~140 and currently commented:
// searchConsoleVerification: {
// google: '...',
// bing: '...',
// },
Uncomment, paste the tokens for that specific property, commit + push. The preset emits the meta tags on next build.
For the 17 fleet docs sites, the same scaffold can be added to each docs/docusaurus.config.js. The preset accepts the option transparently, so the change per site is one block of 4 lines.
Acceptance criteria
Related
- Preset 3.6.0 release notes for
searchConsoleVerification option
- AI baseline campaign (2026-05-18) that wired the scaffold and validator
- IndexNow setup (separate follow-up) for faster Bing recrawl
What
Claim each Conduction property in Google Search Console and Bing Webmaster Tools, generate the verification tokens, and drop them into the matching
docusaurus.config.jsfiles. Preset 3.6.0+ already accepts the tokens via asearchConsoleVerificationoption and emits the right<meta>tags automatically; we just need real tokens.Why
Without verified properties:
The SEO baseline campaign shipped everything except this. Tokens are the last gate.
Properties to claim (18 total)
https://www.conduction.nlhttps://opencatalogi.conduction.nlhttps://openregister.conduction.nlhttps://openconnector.conduction.nlhttps://docudesk.conduction.nlhttps://mydash.conduction.nlhttps://zaakafhandelapp.conduction.nlhttps://pipelinq.conduction.nlhttps://procest.conduction.nlhttps://decidesk.conduction.nlhttps://softwarecatalog.conduction.nlhttps://scholiq.conduction.nlhttps://nldesign.conduction.nlhttps://shillinq.conduction.nlhttps://openbuilt.conduction.nlhttps://doriath.conduction.nlhttps://app-versions.conduction.nlhttps://larpingapp.conduction.nlPer-property steps
<meta name="google-site-verification" content="..." />.<meta name="msvalidate.01" content="..." />.Where the tokens go
Each consuming site's
docusaurus.config.jshas a scaffold block. For conduction-website it's at line ~140 and currently commented:Uncomment, paste the tokens for that specific property, commit + push. The preset emits the meta tags on next build.
For the 17 fleet docs sites, the same scaffold can be added to each
docs/docusaurus.config.js. The preset accepts the option transparently, so the change per site is one block of 4 lines.Acceptance criteria
searchConsoleVerificationblock populated in each site'sdocusaurus.config.jsview-source:<site>shows both meta tags renderedRelated
searchConsoleVerificationoption