2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-11-27 12:16:52 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-05 15:26:18 +00:00
|
|
|
module.exports = {
|
|
|
|
chainWebpack: config => {
|
|
|
|
config
|
|
|
|
.plugin('html')
|
|
|
|
.tap(args => {
|
|
|
|
args[0].template = './index.html'
|
|
|
|
return args
|
|
|
|
})
|
2019-06-18 14:36:54 +01:00
|
|
|
},
|
|
|
|
publicPath: "/static/dist"
|
|
|
|
}
|
|
|
|
|