Skip to content

Commit

Permalink
fix/ postSchema의 minimize 옵션 끔
Browse files Browse the repository at this point in the history
postSchema의 minimize 옵션이 default로 true이다. 이 때문에 post block을
구성하는 요소들 중 styles: {} 인 요소가 제거되었는데, 이 때문에
클라이언트에서 불러온 블럭을 렌더링하는데에 실패하고, 따라서
editor페이지에서 기존에 작성했던 포스트를 불러오는데 실패하고 있다.

따라서 이 옵션을 끈다.
  • Loading branch information
dev2820 committed Sep 4, 2023
1 parent cdf1a27 commit 74e5bdf
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/models/post/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ const metaSchema = new Schema<MetaSchema>({
modifiedAt: { type: Date, default: Date.now },
});

const postSchema = new Schema<PostSchema>({
id: { type: String, required: true },
title: { type: String, required: true },
contents: { type: Array, default: [] },
meta: metaSchema,
});
const postSchema = new Schema<PostSchema>(
{
id: { type: String, required: true },
title: { type: String, required: true },
contents: { type: Array, default: [] },
meta: metaSchema,
},
{ minimize: false }
);

const PostModel = model<PostSchema>('Post', postSchema);

Expand Down

0 comments on commit 74e5bdf

Please sign in to comment.