We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5849e5a commit 997a74eCopy full SHA for 997a74e
package.json
@@ -5,7 +5,7 @@
5
"type": "module",
6
"scripts": {
7
"dev": "next dev",
8
- "build": "cross-env NEXT_DISABLE_ESLINT=true jest && next build",
+ "build": "jest && next build",
9
"start": "next start",
10
"lint": "next lint",
11
"test": "jest",
playwright.config.ts
@@ -19,7 +19,7 @@ export default defineConfig({
19
timeout: 120 * 1000,
20
reuseExistingServer: !process.env.CI,
21
env: {
22
- NEXT_PUBLIC_GOOGLE_MAPS_API_KEY: process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY,
+ NEXT_PUBLIC_GOOGLE_MAPS_API_KEY: process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY || ''
23
},
24
25
0 commit comments