+
} />
} />
diff --git a/config/default.json b/config/default.json
index e55903405..37cb24f7d 100644
--- a/config/default.json
+++ b/config/default.json
@@ -1,5 +1,5 @@
{
- "development": true,
+ "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 49767c09d..dfcd96ec6 100644
--- a/server/app.js
+++ b/server/app.js
@@ -245,11 +245,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') ?? ''
+ 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,