We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd297f0 commit 86f9d7aCopy full SHA for 86f9d7a
src/types/frontmatter.ts
@@ -23,6 +23,10 @@ export interface FrontMatter {
23
* Set this to true to mark this page as a draft, and hide it from various other components (such as the PageGrid).
24
*/
25
draft?: boolean;
26
+ /**
27
+ * Set this to true to take all the available width for the page content.
28
+ */
29
+ fullWidth?: boolean;
30
/**
31
* A list of keywords for indexing with search.
32
@@ -89,8 +93,4 @@ export interface FrontMatter {
89
93
* @example ['v7.119.0', 'next']
90
94
91
95
versions?: string[];
92
- /**
- * Set this to true to take all the available width for the page content.
- */
- fullWidth?: boolean;
96
}
0 commit comments