Currently: ```js this.routerConfig = merge({}, routerDefaultConfig, routerConfig); ``` we should replace it with a normal spread: ```js this.routerConfig = {...routerDefaultConfig, ...routerConfig}; ```