Skip to content

Commit 6207f97

Browse files
authored
Merge pull request #36 from dowdiness/add-community
add community category
2 parents a9944f2 + 99e7c38 commit 6207f97

File tree

9 files changed

+1232
-244
lines changed

9 files changed

+1232
-244
lines changed

gatsby-config.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ module.exports = {
4545
`gatsby-plugin-loadable-components-ssr`, //https://github.com/hector-del-rio/gatsby-plugin-loadable-components-ssr
4646
`gatsby-plugin-root-import`,
4747
`gatsby-plugin-postcss`,
48-
`gatsby-plugin-styled-components`,
4948
`gatsby-plugin-image`,
5049
`gatsby-plugin-sharp`,
5150
{
@@ -77,6 +76,13 @@ module.exports = {
7776
name: `pages`,
7877
},
7978
},
79+
{
80+
resolve: `gatsby-source-filesystem`,
81+
options: {
82+
path: `${__dirname}/src/pages/`,
83+
name: `pages`,
84+
},
85+
},
8086
{
8187
resolve: `gatsby-source-contentful`,
8288
options: contentfulConfig,

package.json

-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"@tailwindcss/typography": "^0.5.0",
1818
"@types/nprogress": "^0.2.0",
1919
"autoprefixer": "^10.4.2",
20-
"babel-plugin-styled-components": "^2.0.2",
2120
"date-fns": "^2.28.0",
2221
"fontsource-jost": "^4.0.0",
2322
"fontsource-noto-sans-jp": "^4.0.0",
@@ -38,7 +37,6 @@
3837
"gatsby-plugin-sharp": "^4.5.1",
3938
"gatsby-plugin-sitemap": "^5.5.0",
4039
"gatsby-plugin-splitbee": "^0.2.0",
41-
"gatsby-plugin-styled-components": "^5.5.0",
4240
"gatsby-plugin-typegen": "^2.2.1",
4341
"gatsby-remark-audio": "^1.0.2",
4442
"gatsby-remark-check-links": "^2.1.0",
@@ -78,7 +76,6 @@
7876
"scheduler": "^0.20.2",
7977
"simplex-noise": "^2.4.0",
8078
"smoothscroll-polyfill": "^0.4.4",
81-
"styled-components": "^5.2.1",
8279
"use-context-selector": "^1.3.9"
8380
},
8481
"devDependencies": {

0 commit comments

Comments
 (0)