Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #328 from 30-seconds/mimir
Browse files Browse the repository at this point in the history
Migrate infrastructure to Next.js
Resolves #308
  • Loading branch information
Chalarangelo authored May 4, 2021
2 parents 8cb5c74 + dd11a6d commit e7b2b1e
Show file tree
Hide file tree
Showing 145 changed files with 8,089 additions and 19,220 deletions.
7 changes: 6 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@
"targets": "> 0.5% and last 4 versions and not dead and not ie>0 and not op_mini all and not and_uc>0 and not edge<79"
}
],
"@babel/preset-react"
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
Expand Down
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@
"react/jsx-no-duplicate-props": "error",
"react/no-deprecated": "error",
"react/prop-types": "warn",
"react/no-unused-prop-types": "error"
"react/no-unused-prop-types": "error",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
}
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock.json -diff
16 changes: 9 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ yarn-error.log
# Force NPM
yarn.lock

# gatsby files
.cache/
public
# Next.js files
.next
out/

# Mac files
.DS_Store
Expand All @@ -112,8 +112,10 @@ public
.assets
.content
content/data
static/assets
src/xml/sitemap.xml
src/xml/feed.xml
src/json/chirp.json
public/assets
public/sitemap.xml
public/feed.xml
public/manifest.webmanifest
public/chirp.json
public/search-data.json
snippet.png
4 changes: 0 additions & 4 deletions _headers

This file was deleted.

Binary file modified assets/icons.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion content/configs
2 changes: 1 addition & 1 deletion content/sources/30blog
2 changes: 1 addition & 1 deletion content/sources/30code
25 changes: 0 additions & 25 deletions gatsby-browser.js

This file was deleted.

37 changes: 0 additions & 37 deletions gatsby-config.js

This file was deleted.

18 changes: 0 additions & 18 deletions gatsby-node.js

This file was deleted.

39 changes: 0 additions & 39 deletions gatsby-ssr.js

This file was deleted.

4 changes: 2 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build]
publish = "public"
command = "npm run build"
publish = "out"
command = "npm run export"
Loading

0 comments on commit e7b2b1e

Please sign in to comment.