comparison vue.config.js @ 11:e0b5dd98665e vue-cli

current frontend with asset server configured
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 20 Jun 2018 14:43:48 +0200
parents 1597506a2241
children
comparison
equal deleted inserted replaced
10:361ae8211991 11:e0b5dd98665e
1 module.exports = { 1 module.exports = {
2 outputDir: "web",
3 devServer: { 2 devServer: {
4 proxy: { 3 proxy: {
5 "/api/*": { 4 "/api/*": {
6 target: "http://localhost:8000", 5 target: "http://localhost:8000",
7 secure: false 6 secure: false
7 },
8 "/assets/*": {
9 target: "http://localhost:5000",
10 secure: false
8 } 11 }
9 } 12 }
10 } 13 }
11 }; 14 };