mirror of
https://github.com/nextcloud/mail.git
synced 2025-07-23 02:57:02 +00:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
const { merge } = require('webpack-merge');
|
|
const common = require('./webpack.common.js');
|
|
|
|
module.exports = merge(common, {
|
|
mode: 'development',
|
|
devtool: 'inline-cheap-module-source-map',
|
|
})
|