⚙️Customizing and Configurations

Change application URL

On your project folder open config.js file. Change websiteUrl value.

//Main Application URL
'websiteUrl' : 'http://example.com',

Change application Name

First, you need to change the name attribute of the package.json file in the application root directory .

"name": "New_App_Name",

Next, modify config.js file appName value.

'appName' : 'Web2Soft',

Change application description

First you need to change the application root directory package.json description attribute.

"description": "Convert Website to a Desktop application",

Change the width and height

Open your application config.js file, after that change the height, width, minHeight, and minWidth values.

//Application window width and height
'width' : Replace_Value,
'height' : Replace_Value,
'minWidth' : Replace_Value,
'minHeight' : Replace_Value,

Last updated