resolved merge conflict

This commit is contained in:
Timo Volkmann 2019-04-18 12:59:02 +02:00
parent 3611b49165
commit 621978e08d
2 changed files with 5 additions and 4 deletions

View File

@ -5,7 +5,8 @@ module.exports = function (ctx) {
// app boot file (/src/boot)
// --> boot files are part of "main.js"
boot: [
'axios'
'axios',
'qr-scanner'
],
css: [
@ -106,8 +107,8 @@ module.exports = function (ctx) {
API: JSON.stringify('http://localhost:8080')
}
: { // Base URL for API-Calls: PRODUCTION (build)
//API: JSON.stringify('http://localhost:8080')
API: JSON.stringify('http://seserver.se.hs-heilbronn.de:8090/buga19geocaching')
//API: JSON.stringify('http://se.hs-heilbronn.de:8090')
API: JSON.stringify('http://localhost:8080')
}
},

View File

@ -15,7 +15,7 @@ public class Application extends SpringBootServletInitializer{
return application.sources(Application.class);
}
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}