mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
check all and set to null if not found
This commit is contained in:
parent
c227484fec
commit
15db898cfd
@ -48,16 +48,16 @@ export default defineConfig({
|
||||
}),
|
||||
EnvironmentPlugin({
|
||||
BUILD_COMMIT: null,
|
||||
PORT: CONFIG.ADMIN_MODULE_PORT, // null,
|
||||
COMMUNITY_HOST: CONFIG.ADMIN_MODULE_HOST, // null,
|
||||
COMMUNITY_URL: CONFIG.COMMUNITY_URL,
|
||||
URL_PROTOCOL: CONFIG.ADMIN_MODULE_PROTOCOL, // null,
|
||||
PORT: CONFIG.ADMIN_MODULE_PORT ?? null, // null,
|
||||
COMMUNITY_HOST: CONFIG.ADMIN_MODULE_HOST ?? null, // null,
|
||||
COMMUNITY_URL: CONFIG.COMMUNITY_URL ?? null,
|
||||
URL_PROTOCOL: CONFIG.ADMIN_MODULE_PROTOCOL ?? null, // null,
|
||||
WALLET_AUTH_URL: CONFIG.WALLET_AUTH_URL ?? null,
|
||||
GRAPHQL_URL: CONFIG.GRAPHQL_URI, // null,
|
||||
GRAPHQL_URL: CONFIG.GRAPHQL_URI ?? null, // null,
|
||||
GRAPHQL_PATH: process.env.GRAPHQL_PATH ?? '/graphql', // null,
|
||||
WALLET_AUTH_PATH: CONFIG.WALLET_AUTH_PATH ?? null,
|
||||
WALLET_LOGIN_PATH: CONFIG.WALLET_LOGIN_URL, // null,
|
||||
DEBUG_DISABLE_AUTH: CONFIG.DEBUG_DISABLE_AUTH, // null,
|
||||
WALLET_LOGIN_PATH: CONFIG.WALLET_LOGIN_URL ?? null, // null,
|
||||
DEBUG_DISABLE_AUTH: CONFIG.DEBUG_DISABLE_AUTH ?? null, // null,
|
||||
// CONFIG_VERSION: CONFIG.CONFIG_VERSION, // null,
|
||||
}),
|
||||
commonjs(),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user