mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 18:30:42 +00:00
32 lines
854 B
JavaScript
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'
|
||
|
// })
|
||
|
// ]
|
||
|
// },
|
||
|
);
|