mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			311 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			311 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var config = require('./webpack.config.js');
 | |
| var BundleTracker = require('webpack-bundle-tracker');
 | |
| 
 | |
| config.devtool = 'source-map';
 | |
| config.output.filename = '[name]-[hash].js';
 | |
| config.plugins.push(new BundleTracker({filename: 'static/webpack-bundles/webpack-stats-production.json'}));
 | |
| 
 | |
| module.exports = config;
 |