Skip to content

Commit

Permalink
Merge branch 'develop' into new-tab-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
aronpetko authored Nov 14, 2023
2 parents 5dbdda8 + ce7297e commit 99cdada
Show file tree
Hide file tree
Showing 74 changed files with 2,888 additions and 8,689 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ npm install

```bash
# DEGREE VALIDATOR
VALIDATOR=http://localhost:5000
NEXT_PUBLIC_VALIDATOR=http://127.0.0.1:5000
```

9. Generate `Prisma` client and run web server:
Expand Down
5 changes: 1 addition & 4 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const { withSentryConfig } = require('@sentry/nextjs');
const fetch = require('node-fetch');
const fetch = (...args) => import('node-fetch').then(({ default: fetch }) => fetch(...args));

/* eslint-disable @typescript-eslint/no-var-requires */

Expand Down Expand Up @@ -40,9 +40,6 @@ module.exports = async (phase) => {
transform: '@mui/icons-material/{{member}}',
},
},
compiler: {
removeConsole: process.env.NODE_ENV === 'production',
},
rewrites: async () => {
return [
{
Expand Down
Loading

0 comments on commit 99cdada

Please sign in to comment.