Skip to content

Commit

Permalink
Feat: Update tables
Browse files Browse the repository at this point in the history
Chore: Update node packages
  • Loading branch information
portableant committed Jan 18, 2023
1 parent c5587cd commit 10b62e5
Show file tree
Hide file tree
Showing 4 changed files with 3,821 additions and 16,811 deletions.
7 changes: 3 additions & 4 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import "@popperjs/core/dist/umd/popper.min"
import "bootstrap/dist/css/bootstrap.min.css"
import "bootstrap/dist/js/bootstrap.min"
import "./src/styles/global.css"
import "@fontsource/public-sans";
import 'typeface-sorts-mill-goudy/index.css';
import '/static/dark-mode.css';
import 'dark-mode-switch/dark-mode-switch.min.js';
// import "@fontsource/public-sans";
// import '/static/dark-mode.css';
// import 'dark-mode-switch/dark-mode-switch.min.js';
12 changes: 9 additions & 3 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ module.exports = {
loading: `lazy`,
},
},
{
resolve: `gatsby-remark-classes`,
options: {
classMap: {
"table": "table"
}
}
},
{
resolve: `gatsby-remark-images-remote`,
options: {
Expand Down Expand Up @@ -208,9 +216,7 @@ module.exports = {
},
query: `
{
allMarkdownRemark(
sort: { order: DESC, fields: [frontmatter___date] },
) {
allMarkdownRemark(sort: {frontmatter: {date: DESC}}) {
nodes {
excerpt
html
Expand Down
Loading

0 comments on commit 10b62e5

Please sign in to comment.