VueTorrent/vue.config.js
Tyler a00a6d539e
New Settings modal (#23)
* New Settings modal
2020-08-27 19:30:51 +02:00

20 lines
419 B
JavaScript

module.exports = {
outputDir: 'vuetorrent/public',
publicPath: './',
transpileDependencies: ['vuetify'],
configureWebpack: {
devtool: 'source-map'
},
devServer: {
watchOptions: {
poll: true
},
host: 'localhost',
port: 8000,
proxy: {
'/api': {
target: 'http://127.0.0.1:8080'
}
}
}
}