storj/web/satellite/vue.config.js

59 lines
1.7 KiB
JavaScript
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
const path = require('path');
const CompressionWebpackPlugin = require('compression-webpack-plugin');
const StyleLintPlugin = require('stylelint-webpack-plugin');
const WorkerPlugin = require('worker-plugin');
const productionBrotliExtensions = ['js', 'css', 'ttf'];
module.exports = {
publicPath: "/static/dist",
productionSourceMap: false,
parallel: true,
configureWebpack: {
plugins: [
new CompressionWebpackPlugin({
algorithm: 'brotliCompress',
filename: '[path][name].br',
test: new RegExp('\\.(' + productionBrotliExtensions.join('|') + ')$'),
threshold: 1024,
minRatio: 0.8
}),
new StyleLintPlugin({
files: ['**/*.{vue,sss,less,scss,sass}'],
ignoreFiles: ["./node_modules/**"],
2019-11-26 16:54:42 +00:00
emitWarning: true,
}),
new WorkerPlugin({
globalObject: 'self',
})
],
},
chainWebpack: config => {
config.output.chunkFilename(`js/vendors_[name]_[hash].js`);
config.output.filename(`js/app_[hash].js`);
config.resolve.alias
.set('@', path.resolve('src'));
config
.plugin('html')
.tap(args => {
args[0].template = './index.html';
return args
});
const svgRule = config.module.rule('svg');
svgRule.uses.clear();
svgRule
2019-11-22 17:22:37 +00:00
.use('babel-loader')
.loader('babel-loader')
.end()
.use('vue-svg-loader')
.loader('vue-svg-loader');
}
};