You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					37 lines
				
				632 B
			
		
		
			
		
	
	
					37 lines
				
				632 B
			| 
								 
											4 years ago
										 
									 | 
							
								const path = require('path');
							 | 
						||
| 
								 | 
							
								const webpack = require('webpack');
							 | 
						||
| 
								 | 
							
								const merge = require('deepmerge');
							 | 
						||
| 
								 | 
							
								const baseConfig = require('../base-webpack.config');
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								module.exports = merge(baseConfig, {
							 | 
						||
| 
								 | 
							
								  context: __dirname,
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  entry: {
							 | 
						||
| 
								 | 
							
								    dll: ['./dll']
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  output: {
							 | 
						||
| 
								 | 
							
								    path: path.resolve(__dirname, 'build'),
							 | 
						||
| 
								 | 
							
								    library: 'dll'
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  module: {
							 | 
						||
| 
								 | 
							
								    rules: [
							 | 
						||
| 
								 | 
							
								      {
							 | 
						||
| 
								 | 
							
								        test: /\.svg$/,
							 | 
						||
| 
								 | 
							
								        use: [
							 | 
						||
| 
								 | 
							
								          'svg-sprite-loader',
							 | 
						||
| 
								 | 
							
								          'svgo-loader'
							 | 
						||
| 
								 | 
							
								        ]
							 | 
						||
| 
								 | 
							
								      }
							 | 
						||
| 
								 | 
							
								    ]
							 | 
						||
| 
								 | 
							
								  },
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  plugins: [
							 | 
						||
| 
								 | 
							
								    new webpack.DllPlugin({
							 | 
						||
| 
								 | 
							
								      path: path.join(__dirname, 'build', '[name]-manifest.json'),
							 | 
						||
| 
								 | 
							
								      name: 'dll'
							 | 
						||
| 
								 | 
							
								    })
							 | 
						||
| 
								 | 
							
								  ]
							 | 
						||
| 
								 | 
							
								});
							 |