Skip to content

Commit

Permalink
Correct syntax errors in module exports
Browse files Browse the repository at this point in the history
Corrected syntax errors in the module exports of the 'feed' and 'blog' data files. The changes include adding missing trailing commas and semicolons to ensure proper function execution.
  • Loading branch information
reatlat committed Apr 13, 2024
1 parent 337bddf commit ec0f695
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/content/blog/blog.11tydata.js
@@ -1,5 +1,5 @@
module.exports = {
tags: ["posts"],
layout: "post.njk",
permalink: "/blog/{{ title | slugify }}/",
tags: ["posts"],
layout: "post.njk",
permalink: "/blog/{{ title | slugify }}/",
};
4 changes: 2 additions & 2 deletions src/content/feed/feed.11tydata.js
@@ -1,3 +1,3 @@
module.exports = {
eleventyExcludeFromCollections: true
}
eleventyExcludeFromCollections: true,
};

0 comments on commit ec0f695

Please sign in to comment.