mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01: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' }],
 | 
						|
        },
 | 
						|
      };
 | 
						|
    },
 | 
						|
  };
 | 
						|
};
 |