# Configuration

The JavaScript script placed on the user's website allows for changing basic settings. To do this, you need to pass the modified parameters in the 'config' parameter, which is passed in the 'init' method immediately after the project ID:

<script>
    ---
    impact('init', PROJECT_ID, config);
    --
</script>

The 'config' parameter can contain the following fields

  • debug [boolean] - output logs to the browser console, this parameter can also be changed using the setDebug method, example:

    impact('setDebug', true);
    

    Default value - true

  • updatePersonalizationOnChangeState [boolean] - receiving personalizations when changing the website URL, this parameter can also be changed using the setUpdatePersonalizationOnChangeState method, example:

    impact('setUpdatePersonalizationOnChangeState', false);
    

    Default value - true

# Examples of overriding configurations at startup

<script>
    ---
    impact('init', PROJECT_ID, {
      debug: false,
      updatePersonalizationOnChangeState: true
    });
    --
</script>

<script>
    ---
    impact('init', PROJECT_ID, {
      debug: false,
      // The rest of the parameters remain default
    });
    --
</script>