GatsbyJS date formatting
GatsbyJS allows you to set a format for a field of type date. See the source code of this website.
node {
frontmatter {
date(formatString: "YYYY-MM-DD")
}
}
Under the hood, GatsbyJS uses moment.js
.
GatsbyJS allows you to set a format for a field of type date. See the source code of this website.
node {
frontmatter {
date(formatString: "YYYY-MM-DD")
}
}
Under the hood, GatsbyJS uses moment.js
.