Skip to content

Commit

Permalink
docs: remove TEMPLATE from website; fix CSS autoprefixer warning (#4539)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Cena committed Feb 11, 2022
1 parent 2794631 commit 9d029a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/website/docusaurus.config.js
Expand Up @@ -51,6 +51,7 @@ const config = {
editUrl: `${githubUrl}/edit/main/packages/website/`,
beforeDefaultRemarkPlugins,
remarkPlugins,
exclude: ['TEMPLATE.md'],
},
],
[
Expand Down
6 changes: 5 additions & 1 deletion packages/website/sidebars/sidebar.rules.js
Expand Up @@ -24,7 +24,11 @@ const paths = globby
};
})
.filter(item => {
return item.name !== 'README' && !rules.some(a => a.name === item.name);
return (
item.name !== 'README' &&
item.name !== 'TEMPLATE' &&
!rules.some(a => a.name === item.name)
);
});

module.exports = {
Expand Down
Expand Up @@ -6,7 +6,7 @@
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: end;
align-items: flex-end;
max-width: 800px;
margin: 10px auto;
padding: 0;
Expand Down

0 comments on commit 9d029a9

Please sign in to comment.