VueTorrent/vue.config.js
2020-05-20 09:59:12 +02:00

13 lines
228 B
JavaScript

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