Inside the settings.json file, the loader may be configured by creating a unbound -> loader key and adding any of the properties below.

Flags


enabled
boolean

Decides wether the JavaScript bundle will be injected into the app or not. If you’d like to completely disable Unbound temporarily, this is the flag you’re looking for.

devtools
boolean

As stated in the name, this provides tools for developers such as React DevTools, which is crucial for patching various sections of the app’s UI.

update
object

Handles updating of the JavaScript bundle. You may set your own bundle source aswell as force it to always download the latest bundle.

Example

settings.json
{
	'unbound': {
		'loader': {
			'enabled': true,
			'devtools': true,
			'update': {
				'force': false,
				'url': 'https://localhost:8080/bundle.js'
			}
		}
	}
}