chore: explicitly use development flag

This commit is contained in:
Daniel Roe 2022-12-18 00:15:19 +00:00
parent 01ecdcb663
commit 51eaa99441
No known key found for this signature in database
GPG key ID: 22D5008E4F5D9B55
3 changed files with 5 additions and 7 deletions

View file

@ -1,6 +1,6 @@
import { fileURLToPath } from 'node:url'
import Inspect from 'vite-plugin-inspect'
import { isCI } from 'std-env'
import { isCI, isDevelopment } from 'std-env'
import { i18n } from './config/i18n'
import { pwa } from './config/pwa'
@ -73,7 +73,7 @@ export default defineNuxtConfig({
},
public: {
env: isCI ? isPreview ? 'staging' : 'production' : 'local',
pwaEnabled: isCI || process.env.VITE_DEV_PWA === 'true',
pwaEnabled: !isDevelopment || process.env.VITE_DEV_PWA === 'true',
translateApi: '',
// Masto uses Mastodon version checks to see what features are enabled.
// Mastodon alternatives like GoToSocial will always fail these checks, so