mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-01 00:17:48 +03:00 
			
		
		
		
	* Add packages * misc changes * Work * Fix missing package * Remove lint for now * Test differently * Try no-sandbox * Test * Try that * Try that * Test * Not headless? * Test electron * Try Windows * lerna run test * Update
		
			
				
	
	
		
			18 lines
		
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import path from 'path';
 | |
| import baseConfig from './base.config';
 | |
| 
 | |
| export default baseConfig({
 | |
|   mode: 'production',
 | |
|   output: { path: path.join(__dirname, '../build/extension') },
 | |
|   globals: {
 | |
|     'process.env': {
 | |
|       NODE_ENV: '"production"',
 | |
|     },
 | |
|   },
 | |
|   copy: true,
 | |
|   manifestJsonPath: path.join(
 | |
|     __dirname,
 | |
|     '../src/browser/firefox/manifest.json'
 | |
|   ),
 | |
| });
 |