storj/web/satellite/vue.config.js

10 lines
193 B
JavaScript
Raw Normal View History

module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].template = './index.html'
return args
})
}
}