VueTorrent/vue.config.js
2020-05-20 18:42:17 +02:00

13 lines
234 B
JavaScript

module.exports = {
outputDir: 'vuetorrent/public',
publicPath: './',
devServer: {
port: 8000,
proxy: {
'/api': {
target: 'http://127.0.0.1:8080'
}
}
}
}