Add: build client as server instead of static

This commit is contained in:
Aram Becker 2023-05-01 17:56:14 +02:00
parent 883cb46481
commit 31dc10ba51
8 changed files with 715 additions and 43 deletions

View file

@ -16,6 +16,11 @@ export default function ({ $axios, store, $config }) {
config.url = `/dev${config.url}`
console.log('Making request to ' + config.url)
}
console.log($config)
if ($config.routerBasePath) {
config.url = `${$config.routerBasePath}${config.url}`
}
})
$axios.onError(error => {