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

webpack.dev.js « src - github.com/nextcloud/files_videoplayer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da0084ba571c7ce30c576cec7abf315102d89afc (plain)
1
2
3
4
5
6
7
const merge = require('webpack-merge');
const common = require('./webpack.common.js');

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