devlucky/Kakapo.js

Fix routerConfig merge options in Router

zzarcon opened this issue · 0 comments

Currently:

this.routerConfig = merge({}, routerDefaultConfig, routerConfig);

we should replace it with a normal spread:

this.routerConfig = {...routerDefaultConfig, ...routerConfig};