refactor: move single instance config to runtime (#1664)

This commit is contained in:
Daniel Roe 2023-02-07 04:10:43 -08:00 committed by GitHub
parent 9e09c9072f
commit 2128d11238
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View file

@ -96,7 +96,6 @@ export default defineNuxtConfig({
},
},
appConfig: {
singleInstanceServer: process.env.SINGLE_INSTANCE_SERVER === 'true',
storage: {
driver: process.env.NUXT_STORAGE_DRIVER ?? (isCI ? 'cloudflare' : 'fs'),
},
@ -115,6 +114,7 @@ export default defineNuxtConfig({
translateApi: '',
// Use the instance where Elk has its Mastodon account as the default
defaultServer: 'm.webtoo.ls',
singleInstance: false,
},
storage: {
fsBase: 'node_modules/.cache/app',