Rename to developmentStyle, and simplify logic

This commit is contained in:
Trevor Buckner
2026-09-23 21:37:58 -04:00
parent ab0f2aab15
commit 8dee6466fd
3 changed files with 10 additions and 10 deletions
+6 -6
View File
@@ -557,12 +557,12 @@ export default async function createApp(vite) {
// Create configuration object
const configuration = {
local : isLocalEnvironment,
publicUrl : config.get('publicUrl') ?? '',
baseUrl : `${req.protocol}://${req.get('host')}`,
environment : nodeEnv,
deployment : config.get('heroku_app_name') ?? '',
development : config.get('development')
local : isLocalEnvironment,
publicUrl : config.get('publicUrl') ?? '',
baseUrl : `${req.protocol}://${req.get('host')}`,
environment : nodeEnv,
deployment : config.get('heroku_app_name') ?? '',
developmentStyle : config.get('development_style')
};
const props = {
version : version,