mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 07:57:39 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const path = require('path');
 | |
| const webpack = require('webpack');
 | |
| const CopyWebpackPlugin = require('copy-webpack-plugin');
 | |
| const HtmlWebpackPlugin = require('html-webpack-plugin');
 | |
| 
 | |
| module.exports = (env = {}) => ({
 | |
|   mode: 'development',
 | |
|   entry: {
 | |
|     app: './index.js'
 | |
|   },
 | |
|   output: {
 | |
|     path: path.resolve(__dirname, 'build/' + env.platform),
 | |
|     publicPath: '',
 | |
|     filename: 'js/[name].js',
 | |
|     sourceMapFilename: 'js/[name].map'
 | |
|   },
 | |
|   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',
 | |
|           outputPath: 'images/',
 | |
|           publicPath: 'images/'
 | |
|         }
 | |
|       },
 | |
|       {
 | |
|         test: /\.(ttf|eot|svg|woff|woff2)$/,
 | |
|         loader: 'file-loader',
 | |
|         options: { outputPath: 'fonts/', publicPath: 'fonts/' }
 | |
|       }
 | |
|     ]
 | |
|   },
 | |
|   plugins: [
 | |
|     new webpack.DefinePlugin({
 | |
|       'process.env': {
 | |
|         NODE_ENV: JSON.stringify(
 | |
|           env.development ? 'development' : 'production'
 | |
|         ),
 | |
|         PLATFORM: JSON.stringify(env.platform)
 | |
|       }
 | |
|     }),
 | |
|     new HtmlWebpackPlugin({
 | |
|       template: 'assets/index.html'
 | |
|     }),
 | |
|     new CopyWebpackPlugin(
 | |
|       env.platform === 'electron'
 | |
|         ? [{ context: './src/electron', from: '*' }]
 | |
|         : []
 | |
|     )
 | |
|   ],
 | |
|   optimization: {
 | |
|     minimize: false,
 | |
|     splitChunks: {
 | |
|       cacheGroups: {
 | |
|         vendor: {
 | |
|           test: /[\\/]node_modules[\\/]/,
 | |
|           name: 'common',
 | |
|           chunks: 'all'
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   },
 | |
|   performance: {
 | |
|     hints: false
 | |
|   },
 | |
|   devServer: {
 | |
|     port: 3000
 | |
|   },
 | |
|   devtool: env.development ? 'eval' : 'source-map'
 | |
| });
 |