|  | @@ -55,7 +55,8 @@ const devWebpackConfig = merge(baseWebpackConfig, {
 | 
	
		
			
				|  |  |      new HtmlWebpackPlugin({
 | 
	
		
			
				|  |  |        filename: 'index.html',
 | 
	
		
			
				|  |  |        template: 'index.html',
 | 
	
		
			
				|  |  | -      inject: true
 | 
	
		
			
				|  |  | +      inject: true,
 | 
	
		
			
				|  |  | +      favicon: path.resolve('src/assets/favicon.ico')
 | 
	
		
			
				|  |  |      }),
 | 
	
		
			
				|  |  |      // copy custom static assets
 | 
	
		
			
				|  |  |      new CopyWebpackPlugin([
 | 
	
	
		
			
				|  | @@ -85,8 +86,8 @@ module.exports = new Promise((resolve, reject) => {
 | 
	
		
			
				|  |  |            messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          onErrors: config.dev.notifyOnErrors
 | 
	
		
			
				|  |  | -        ? utils.createNotifierCallback()
 | 
	
		
			
				|  |  | -        : undefined
 | 
	
		
			
				|  |  | +          ? utils.createNotifierCallback()
 | 
	
		
			
				|  |  | +          : undefined
 | 
	
		
			
				|  |  |        }))
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |        resolve(devWebpackConfig)
 |