Update gitignore, remove RSS sorting
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -12,9 +12,10 @@ pnpm-debug.log*
|
||||
|
||||
# environment variables
|
||||
.env
|
||||
.env.development
|
||||
.env.production
|
||||
|
||||
# macOS-specific files
|
||||
.DS_Store
|
||||
|
||||
node_modules
|
||||
node_modules
|
||||
|
||||
@@ -3,11 +3,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from "../config";
|
||||
|
||||
let posts = Object.values(import.meta.glob("../posts/*.md", { eager: true }));
|
||||
|
||||
posts = posts.sort(
|
||||
(a, b) =>
|
||||
new Date(b.frontmatter.updated || b.frontmatter.added).valueOf() -
|
||||
new Date(a.frontmatter.updated || a.frontmatter.added).valueOf()
|
||||
);
|
||||
console.log(posts);
|
||||
|
||||
export const get = () =>
|
||||
rss({
|
||||
|
||||
Reference in New Issue
Block a user