Typicalc/webpack.config.js
2021-01-26 16:05:33 +01:00

32 lines
854 B
JavaScript

/**
* This file has been autogenerated as it didn't exist or was made for an older
* incompatible version.
*
* This file can be used for manual configuration. It will not be modified
* if the flowDefaults constant exists.
*/
const merge = require('webpack-merge');
const flowDefaults = require('./webpack.generated.js');
/**
* To change the webpack config, add a new configuration object in
* the merge arguments below:
*/
module.exports = merge(flowDefaults,
// Override default configuration
// {
// mode: 'development',
// devtool: 'inline-source-map',
// },
// Add a custom plugin
// (install the plugin with `npm install --save-dev webpack-bundle-analyzer`)
// {
// plugins: [
// new require('webpack-bundle-analyzer').BundleAnalyzerPlugin({
// analyzerMode: 'static'
// })
// ]
// },
);