As par documentation of base option:
The base URL of the app. For example, if the entire single page application is served under /app/, then base shou
Had the same problem, setting "base" didn't work - workaround is to update base url in router:
{ name: 'listings', path: baseUrl + '/listings', component: PageListings}
and refer to routes by name:
Listings