Skip to content

Commit 6b1937f

Browse files
committed
Fix failing CD/CD
1 parent 3b8d71a commit 6b1937f

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.github/workflows/firebase-hosting-push.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ name: Deploy to Firebase Hosting on merge
66
jobs:
77
build_and_deploy:
88
env:
9-
NODE_ENV: production
109
SVELTE_WHEEL_API_KEY: '${{ secrets.SVELTE_WHEEL_API_KEY }}'
1110
PUBLIC_FIREBASE_API_KEY: '${{ secrets.PUBLIC_FIREBASE_API_KEY }}'
1211
PUBLIC_FIREBASE_AUTH_DOMAIN: '${{ secrets.PUBLIC_FIREBASE_AUTH_DOMAIN }}'

src/routes/api/wheels/[path=path]/+server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export const GET = async ({ request, params }) => {
5050
}
5151

5252
export const PUT = async ({ request, params }) => {
53+
console.log('NODE_ENV:', process.env.NODE_ENV, import.meta.env.NODE_ENV)
5354
const uid = request.headers.get('authorization')
5455
const apiKey = request.headers.get('x-api-key')
5556
if (

0 commit comments

Comments
 (0)