Skip to content

Commit 7f3cfae

Browse files
Fix the issue
1 parent 625a141 commit 7f3cfae

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.eslintrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = {
55
'plugin:@typescript-eslint/recommended',
66
'prettier/@typescript-eslint',
77
'plugin:prettier/recommended',
8+
'next',
89
],
910
parserOptions: {
1011
ecmaVersion: 2018,
@@ -14,7 +15,7 @@ module.exports = {
1415
},
1516
},
1617
rules: {
17-
"@typescript-eslint/explicit-function-return-type": "off",
18+
'@typescript-eslint/explicit-function-return-type': 'off',
1819
},
1920
settings: {
2021
react: {

packages/web/next.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
let config = {
22
target: 'serverless',
33
productionBrowserSourceMaps: true,
4+
webpack5: false,
45
}
56

67
if (process.env.ANALYZE === '1') {

0 commit comments

Comments
 (0)