-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from component-driven/gatsby
fix: Fix theme font styles and move example to GatsbyJS so it consistent
- Loading branch information
Showing
20 changed files
with
1,289 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,6 @@ | |
} | ||
], | ||
"@babel/react" | ||
] | ||
], | ||
"plugins": ["@babel/plugin-proposal-class-properties"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module.exports = { | ||
// pathPrefix: `/slides`, | ||
plugins: [ | ||
{ | ||
resolve: "gatsby-theme-mdx-deck", | ||
options: { | ||
// source directory | ||
contentPath: "./slides", | ||
// base path for routes generate by this theme | ||
basePath: "/slides", | ||
}, | ||
}, | ||
{ | ||
resolve: "gatsby-plugin-compile-es6-packages", | ||
options: { | ||
modules: [ | ||
"mdx-deck", | ||
"gatsby-theme-mdx-deck", | ||
"@mdx-deck/themes", | ||
"@mdx-deck/gatsby-plugin", | ||
], | ||
}, | ||
}, | ||
], | ||
}; |
Oops, something went wrong.