Skip to content

Commit

Permalink
Update dependencies (#4)
Browse files Browse the repository at this point in the history
* update firebase

* update mui

* update next js

* setup eslint

* should compile now

* netlify functions

* please work, netlify

* Revert "please work, netlify"

This reverts commit 9c883cb.

* some visual changes
  • Loading branch information
ranile authored Feb 22, 2022
1 parent 5f28fe3 commit 4be2369
Show file tree
Hide file tree
Showing 38 changed files with 5,013 additions and 8,734 deletions.
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

29 changes: 29 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"env": {
"browser": true,
"node": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"indent": ["error", 4],
"linebreak-style": ["error", "unix"],
"react/react-in-jsx-scope": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}
10 changes: 0 additions & 10 deletions .idea/runConfigurations.xml

This file was deleted.

25 changes: 0 additions & 25 deletions firestore-debug.log

This file was deleted.

4 changes: 3 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({

module.exports = withBundleAnalyzer({
reactStrictMode: true,
target: "serverless",
swcMinify: true,
webpack: (config, {isServer}) => {
// Important: return the modified config
if (!isServer) {
Expand Down
Loading

0 comments on commit 4be2369

Please sign in to comment.