3e90b9e3b8
* V3-1284 Node bootstrap web frontend
14 lines
275 B
JavaScript
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
|
|
})
|
|
}
|
|
};
|