chore: explicitly use development flag

pull/455/head
Daniel Roe 2022-12-18 00:15:19 +00:00
rodzic 01ecdcb663
commit 51eaa99441
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 22D5008E4F5D9B55
3 zmienionych plików z 5 dodań i 7 usunięć

Wyświetl plik

@ -1,12 +1,12 @@
import { isCI } from 'std-env'
import { isCI, isDevelopment } from 'std-env'
import type { VitePWANuxtOptions } from '../modules/pwa/types'
const isPreview = process.env.PULL_REQUEST === 'true'
const pwa: VitePWANuxtOptions = {
mode: isCI ? 'production' : 'development',
// disabled PWA only on production
disable: !isCI && process.env.VITE_DEV_PWA !== 'true',
// disable PWA only in development
disable: isDevelopment && process.env.VITE_DEV_PWA !== 'true',
scope: '/',
srcDir: './service-worker',
filename: 'sw.ts',

Wyświetl plik

@ -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

Wyświetl plik

@ -6,8 +6,6 @@
"homepage": "https://elk.zone/",
"scripts": {
"build": "nuxi build",
"build:pwa": "VITE_DEV_PWA=true nuxi build",
"build:netlify:pwa": "VITE_DEV_PWA=true NITRO_PRESET=netlify nuxi build",
"dev": "nuxi dev --port 5314",
"dev:pwa": "VITE_DEV_PWA=true nuxi dev --port 5314",
"dev:mocked": "nuxi dev --port 5314 --dotenv .env.mock",