mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 19:03:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			358 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			358 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from flask import Flask
 | |
| 
 | |
| 
 | |
| def init_app(app: Flask):
 | |
|     if app.config.get('API_COMPRESSION_ENABLED', False):
 | |
|         from flask_compress import Compress
 | |
| 
 | |
|         app.config['COMPRESS_MIMETYPES'] = [
 | |
|             'application/json',
 | |
|             'image/svg+xml',
 | |
|             'text/html',
 | |
|         ]
 | |
| 
 | |
|         compress = Compress()
 | |
|         compress.init_app(app)
 | |
| 
 | 
