mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	* Build all * Lint all * Test (almost) all * Test CLI * Format * Make styled-components a peer dependency * Add missing peer dependencies * Fix electron fixture
		
			
				
	
	
		
			11 lines
		
	
	
		
			217 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			217 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const path = require('path');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  mode: 'development',
 | 
						|
  entry: './test/electron/fixture/src/renderer.js',
 | 
						|
  output: {
 | 
						|
    filename: 'renderer.js',
 | 
						|
    path: path.resolve(__dirname, 'dist'),
 | 
						|
  },
 | 
						|
};
 |