Welcome to mirror list, hosted at ThFree Co, Russian Federation.

webpack.prod.js - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cf446b9be570414d55c890d43067ab5331dca7d (plain)
1
2
3
4
5
6
7
8
9
const merge = require('webpack-merge')
const common = require('./webpack.common.js')

module.exports = common.map(
	config => merge(config, {
		mode: 'production',
		devtool: '#source-map',
	})
)