VueTorrent/vue.config.js
2020-10-28 14:44:40 +01:00

36 lines
856 B
JavaScript

const webpack = require('webpack')
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'VueTorrent'
return args
})
},
outputDir: 'vuetorrent/public',
publicPath: './',
transpileDependencies: ['vuetify'],
configureWebpack: {
devtool: 'source-map',
plugins: [
new webpack.DefinePlugin({
APPLICATION_VERSION: JSON.stringify(
require('./package.json').version
)
})
]
},
devServer: {
watchOptions: {
poll: true
},
host: '0.0.0.0',
port: 8000,
proxy: {
'/api': {
target: 'http://localhost:8080'
}
}
}
}