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

Commit

Permalink
Merge 25da88f into 0678e66
Browse files Browse the repository at this point in the history
  • Loading branch information
wootsbot committed Feb 21, 2020
2 parents 0678e66 + 25da88f commit b1977ca
Show file tree
Hide file tree
Showing 6 changed files with 290 additions and 78 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ coverage/
# Cruft
.DS_Store
npm-debug.log
src/.next/
.next/

next-seo.config.js
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Don't check auto-generated stuff into git
src/.next/
.next/
coverage
node_modules
stats.json
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Don't check auto-generated stuff into git
src/.next
.next

node_modules
.cache
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"immer": "^5.3.2",
"invariant": "2.2.4",
"lodash": "^4.17.15",
"next": "^9.2.1",
"next-i18next": "^4.1.0",
"next": "^9.2.2",
"next-i18next": "^4.2.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
Expand All @@ -61,7 +61,7 @@
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-emotion": "^10.0.21",
"babel-plugin-module-resolver": "^3.2.0",
"coveralls": "3.0.3",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const nextI18NextMiddleware = require('next-i18next/middleware').default;
const nextI18next = require('../i18n');

const port = process.env.PORT || 3000;
const app = next({ dir: './src', dev });
const app = next({ dev });

const handle = app.getRequestHandler();

Expand Down
Loading

0 comments on commit b1977ca

Please sign in to comment.