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

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

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