I cannot change some values in the config game for example gameTitle or gameVersion, but concretely I was interested in change the value of loaderPath, as the docs says:
_A URL path used to resolve relative paths given to the loader. Example: 'images/sprites/'._
https://photonstorm.github.io/phaser3-docs/Phaser.Core.Config.html#loaderPath

then a console.log(this.game); in the _main.menu_ Scene

This values never are changed
Amazing game engine!
Hello @shimozurdo ,
The properties should be like following:
const config = {
title: 'Blaster x',
version: '1.0',
url: '' //some url if you also need url :)
}
In src/core/Config.js code is following this:
/**
* @const {string} Phaser.Core.Config#gameTitle - The title of the game.
*/
this.gameTitle = GetValue(config, 'title', '');
/**
* @const {string} Phaser.Core.Config#gameURL - The URL of the game.
*/
this.gameURL = GetValue(config, 'url', 'https://phaser.io');
/**
* @const {string} Phaser.Core.Config#gameVersion - The version of the game.
*/
this.gameVersion = GetValue(config, 'version', '');
Also you might wanna check on Game Config examples
Hopefully this solves your problem =)
Awesome! thank you @halilcakar .
Most helpful comment
Awesome! thank you @halilcakar .