Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Sep 30, 2024
1 parent 2515c53 commit 03fdacd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contentlayer.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const BlogPost = defineDocumentType(() => ({
const Kcl = defineDocumentType(() => ({
name: 'Kcl',
filePathPattern: `pages/docs/kcl/*.md`,
contentType: 'md',
contentType: 'markdown',
fields: {
title: {
type: 'string',
Expand Down Expand Up @@ -245,7 +245,7 @@ const Kcl = defineDocumentType(() => ({
const KclType = defineDocumentType(() => ({
name: 'KclType',
filePathPattern: `pages/docs/kcl/types/*.md`,
contentType: 'md',
contentType: 'markdown',
fields: {
title: {
type: 'string',
Expand Down Expand Up @@ -285,7 +285,7 @@ const KclType = defineDocumentType(() => ({
const Cli = defineDocumentType(() => ({
name: 'Cli',
filePathPattern: `pages/docs/cli/**/*.md`,
contentType: 'md',
contentType: 'markdown',
fields: {
title: {
type: 'string',
Expand Down

0 comments on commit 03fdacd

Please sign in to comment.