astro/last-modified.mjs

9 lines
233 B
JavaScript
Raw Normal View History

2025-01-27 07:12:04 +00:00
import { statSync } from "fs";
export function modifiedTime() {
return function (tree, file) {
const path = file.history[0];
const result = statSync(path);
file.data.astro.frontmatter.lastModified = result.mtime;
}
}