VueTorrent/vue.config.js

21 lines
419 B
JavaScript
Raw Normal View History

2019-12-09 14:20:09 +01:00
module.exports = {
2020-05-20 18:42:17 +02:00
outputDir: 'vuetorrent/public',
2020-05-20 09:59:12 +02:00
publicPath: './',
transpileDependencies: ['vuetify'],
configureWebpack: {
devtool: 'source-map'
},
2020-05-20 09:59:12 +02:00
devServer: {
watchOptions: {
poll: true
},
host: 'localhost',
2020-05-20 09:59:12 +02:00
port: 8000,
proxy: {
'/api': {
target: 'http://127.0.0.1:8080'
}
}
}
2019-12-09 14:20:09 +01:00
}