2020-05-28 15:50:03 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 DigitalOcean
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-05-26 22:23:07 +00:00
|
|
|
const path = require('path');
|
2020-05-27 13:17:24 +00:00
|
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
|
|
const DuplicatePackageCheckerPlugin = require('duplicate-package-checker-webpack-plugin');
|
2020-05-26 22:23:07 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
publicPath: './',
|
|
|
|
outputDir: 'dist',
|
|
|
|
filenameHashing: false,
|
2020-06-02 15:51:28 +00:00
|
|
|
//productionSourceMap: false,
|
2020-05-26 22:23:07 +00:00
|
|
|
configureWebpack: {
|
|
|
|
plugins: [
|
|
|
|
process.argv.includes('--analyze') && new BundleAnalyzerPlugin(),
|
2020-05-27 13:17:24 +00:00
|
|
|
process.argv.includes('--analyze') && new DuplicatePackageCheckerPlugin(),
|
2020-05-26 22:23:07 +00:00
|
|
|
].filter(x => !!x),
|
|
|
|
},
|
|
|
|
chainWebpack: config => {
|
|
|
|
// Use a custom HTML template
|
|
|
|
config.plugin('html').tap(options => {
|
|
|
|
options[0].template = path.join(__dirname, 'build', 'index.html');
|
|
|
|
return options;
|
|
|
|
});
|
|
|
|
},
|
2020-05-27 13:17:24 +00:00
|
|
|
};
|