WIP Progress on skeleton of the Vue app.

This commit is contained in:
2019-03-04 18:46:54 -06:00
parent bcde5fbfc0
commit 1b94245078
37 changed files with 536 additions and 256 deletions

8
web/vue.config.js Normal file
View File

@@ -0,0 +1,8 @@
module.exports = {
devServer: {
proxy: {
'/api': { target: 'http://localhost:8081' }
},
disableHostCheck: true
}
};