You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ah - figured it out. In your development.json you have a width value that looks to be overwriting the settings.json width. Removed the width in development.json and now displays screen size I have in the settings.json as expected.
Any reason you have the width and not height spec'd in the development.json I should be aware of?
@rjpalermo1 Runtime settings is a merge of config files. settings.json contains initial app settings, thenosx.json adds/overrides OS specific settings and after that development.json adds/overrides env specific settings. Using this you can, for instance, change window size in development so that you could launch app with console opened in dev mode.
out of the box fresh launch tried to adjust sizing in settings.json
{
"width": 900,
"height": 650
}
Still launching with a default looks like 500x500 window.
Only way I can get window to size is to hard code values into the main/index.js by overwriting the json.settings.width/height values.
The text was updated successfully, but these errors were encountered: