deactivate check of host, change rest service to public url

This commit is contained in:
Tim Gröger 2019-12-27 14:53:31 +01:00
parent 3e081f2bb5
commit f6b28aa7ae
2 changed files with 7 additions and 3 deletions

View File

@ -35,6 +35,7 @@ class Service {
}
}
const httpClient = new Service("http://localhost:5000/")
//const httpClient = new Service("http://192.168.5.118:5000/")
const httpClient = new Service("http://groeger-clan.duckdns.org:5000/")
export default httpClient

View File

@ -1,5 +1,8 @@
module.exports = {
"transpileDependencies": [
"vuetify"
]
}
],
devServer: {
disableHostCheck: true
}
}