storj/web/satellite/vue.config.js
Yehor Butko 518a198221
CSP implementation for satellite console (#2644)
* CSP implementation for console
2019-07-30 13:13:24 +03:00

22 lines
492 B
JavaScript

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
const path = require('path');
module.exports = {
publicPath: "/static/dist",
productionSourceMap: false,
parallel: true,
chainWebpack: config => {
config.resolve.alias
.set('@', path.resolve('src'));
config
.plugin('html')
.tap(args => {
args[0].template = './index.html';
return args
});
}
};