12 lines
316 B
JavaScript
12 lines
316 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2018 F7cloud GmbH and F7cloud 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',
|
|
})
|