mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 16:07:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const path = require('path');
 | |
| const webpack = require('webpack');
 | |
| const TerserPlugin = require('terser-webpack-plugin');
 | |
| 
 | |
| module.exports = (env = {}) => (
 | |
|   {
 | |
|     mode: 'production',
 | |
|     entry: {
 | |
|       app: ['./src/app/index.js']
 | |
|     },
 | |
|     output: {
 | |
|       library: 'ReduxDevTools',
 | |
|       libraryTarget: 'umd',
 | |
|       path: path.resolve(__dirname, 'umd'),
 | |
|       filename: env.minimize ? 'redux-devtools-core.min.js' : 'redux-devtools-core.js'
 | |
|     },
 | |
|     module: {
 | |
|       rules: [
 | |
|         {
 | |
|           test: /\.js$/,
 | |
|           loader: 'babel-loader',
 | |
|           exclude: /node_modules/
 | |
|         },
 | |
|         {
 | |
|           test: /\.html$/,
 | |
|           loader: 'html-loader'
 | |
|         },
 | |
|         {
 | |
|           test: /\.css$/,
 | |
|           use: [
 | |
|             { loader: 'style-loader' },
 | |
|             { loader: 'css-loader' }
 | |
|           ]
 | |
|         },
 | |
|         {
 | |
|           test: /\.(png|gif|jpg)$/,
 | |
|           loader: 'url-loader',
 | |
|           options: { limit: '25000' }
 | |
|         },
 | |
|         {
 | |
|           test: /\.(ttf|eot|svg|woff|woff2)$/,
 | |
|           loader: 'url-loader'
 | |
|         }
 | |
|       ]
 | |
|     },
 | |
|     plugins: [
 | |
|       new webpack.DefinePlugin({
 | |
|         'process.env': {
 | |
|           NODE_ENV: JSON.stringify('production'),
 | |
|           PLATFORM: JSON.stringify('web')
 | |
|         }
 | |
|       })
 | |
|     ],
 | |
|     externals: {
 | |
|       react: {
 | |
|         root: 'React',
 | |
|         commonjs2: 'react',
 | |
|         commonjs: 'react',
 | |
|         amd: 'react'
 | |
|       },
 | |
|       'react-dom': {
 | |
|         root: 'ReactDOM',
 | |
|         commonjs2: 'react-dom',
 | |
|         commonjs: 'react-dom',
 | |
|         amd: 'react-dom'
 | |
|       }
 | |
|     },
 | |
|     optimization: {
 | |
|       minimize: !!env.minimize,
 | |
|       minimizer: [
 | |
|         new TerserPlugin({
 | |
|           terserOptions: {
 | |
|             safari10: true
 | |
|           }
 | |
|         })
 | |
|       ]
 | |
|     },
 | |
|     performance: {
 | |
|       hints: false
 | |
|     }
 | |
|   }
 | |
| );
 |