storj/web/bootstrap/vue.config.js
Yehor Butko 3e90b9e3b8
V3-1284 Node bootstrap web frontend (#1405)
* V3-1284 Node bootstrap web frontend
2019-03-05 13:19:43 +02:00

14 lines
275 B
JavaScript

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].template = './index.html'
return args
})
}
};