mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-31 08:07:30 +00:00
Bumps [webpack-merge](https://github.com/survivejs/webpack-merge) from 4.2.2 to 5.1.3. - [Release notes](https://github.com/survivejs/webpack-merge/releases) - [Changelog](https://github.com/survivejs/webpack-merge/blob/master/CHANGELOG.md) - [Commits](https://github.com/survivejs/webpack-merge/compare/v4.2.2...v5.1.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
const { merge } = require('webpack-merge');
|
|
const common = require('./webpack.common.js');
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'development',
|
|
devServer: {
|
|
historyApiFallback: true,
|
|
noInfo: true,
|
|
overlay: true
|
|
},
|
|
devtool: 'cheap-source-map',
|
|
})
|