We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac80c36 commit 842eec0Copy full SHA for 842eec0
exporter.js
@@ -23,7 +23,7 @@ const exportPosts = (posts, rootPath) => {
23
}
24
})
25
26
- const fileContents = templates.post(post.title, post.date, post.passthroughUrl, post.markdownContent)
+ const fileContents = templates.post(post.title, post.date.toISOString(), post.passthroughUrl, post.markdownContent)
27
await fs.outputFile(`${postPath}/index.md`, fileContents)
28
29
0 commit comments