+
} />
} />
diff --git a/config/default.json b/config/default.json
index de8040109..37cb24f7d 100644
--- a/config/default.json
+++ b/config/default.json
@@ -1,5 +1,5 @@
{
- "development": false,
+ "development_style": false,
"host" : "homebrewery.local.naturalcrit.com:8000",
"naturalcrit_url" : "local.naturalcrit.com:8010",
"secret" : "secret",
diff --git a/server/app.js b/server/app.js
index 5cb844b86..90766a7a2 100644
--- a/server/app.js
+++ b/server/app.js
@@ -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,