VueTorrent/vue.config.js
2020-05-24 11:50:21 +02:00

13 lines
273 B
JavaScript

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