8d81617481
* initial frontend arch satellite account * V3-500 register page
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
module.exports = {
|
|
chainWebpack: config => {
|
|
config
|
|
.plugin('html')
|
|
.tap(args => {
|
|
args[0].template = './index.html'
|
|
return args
|
|
})
|
|
}
|
|
} |