mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-13 20:23:59 +00:00
21 lines
448 B
JavaScript
21 lines
448 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
/* global module */
|
|
/* global require */
|
|
|
|
const { merge } = require('webpack-merge')
|
|
const common = require('./webpack.common.js')
|
|
|
|
module.exports = async () => merge(await common(), {
|
|
mode: 'development',
|
|
devServer: {
|
|
historyApiFallback: true,
|
|
noInfo: true,
|
|
overlay: true,
|
|
},
|
|
devtool: 'cheap-source-map',
|
|
})
|