Skip to content

Commit c71818a

Browse files
committed
fix: update docusaurus configuration for not recognized metadata
1 parent 83dd4dc commit c71818a

1 file changed

Lines changed: 16 additions & 10 deletions

File tree

docusaurus.config.ts

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,28 @@ const config: Config = {
1010
url: 'https://structus-io.github.io',
1111
baseUrl: '/structus-docs/',
1212

13-
metadata: [
13+
organizationName: 'structus-io',
14+
projectName: 'structus-docs',
15+
16+
onBrokenLinks: 'warn',
17+
18+
headTags: [
1419
{
15-
name: 'description',
16-
content: 'Structus: A comprehensive framework for building clean architecture applications with Domain-Driven Design, CQRS, and event-driven architecture. Multi-language support including Kotlin, with more languages coming soon.',
20+
tagName: 'meta',
21+
attributes: {
22+
name: 'description',
23+
content: 'Structus: A comprehensive framework for building clean architecture applications with Domain-Driven Design, CQRS, and event-driven architecture. Multi-language support including Kotlin, with more languages coming soon.',
24+
},
1725
},
1826
{
19-
name: 'keywords',
20-
content: 'Clean Architecture, Domain-Driven Design, DDD, CQRS, Event-Driven Architecture, framework, Kotlin, software architecture, enterprise development',
27+
tagName: 'meta',
28+
attributes: {
29+
name: 'keywords',
30+
content: 'Clean Architecture, Domain-Driven Design, DDD, CQRS, Event-Driven Architecture, framework, Kotlin, software architecture, enterprise development',
31+
},
2132
},
2233
],
2334

24-
organizationName: 'structus-io',
25-
projectName: 'structus-docs',
26-
27-
onBrokenLinks: 'warn',
28-
2935
markdown: {
3036
hooks: {
3137
onBrokenMarkdownLinks: 'warn',

0 commit comments

Comments
 (0)