storj/web/satellite/vue.config.js
2019-06-18 16:36:54 +03:00

16 lines
307 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
})
},
publicPath: "/static/dist"
}