mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-31 11:06:35 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			254 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			254 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = function (context, options) {
 | |
|   return {
 | |
|     name: 'labelmap',
 | |
|     configureWebpack(config, isServer, utils) {
 | |
|       return {
 | |
|         module: {
 | |
|           rules: [{ test: /\.txt$/, use: 'raw-loader' }],
 | |
|         },
 | |
|       };
 | |
|     },
 | |
|   };
 | |
| };
 | 
