Skip to content

Commit d875b3e

Browse files
author
Pascal Klesse
committed
fix: Update environment variable for bug feature toggle
1 parent b5abeae commit d875b3e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

nuxt-base-template/.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
SITE_URL=http://localhost:3001
2+
APP_ENV=development
23
NODE_ENV=development
34
API_URL=http://localhost:3000
45
WEB_PUSH_KEY=

nuxt-base-template/nuxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default defineNuxtConfig({
1010
},
1111

1212
bug: {
13-
enabled: process.env.NODE_ENV !== 'production',
13+
enabled: process.env.APP_ENV !== 'production',
1414

1515
// Linear Integration
1616
linearApiKey: process.env.LINEAR_API_KEY,

0 commit comments

Comments
 (0)