mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			350 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			350 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from flask import Flask
 | |
| 
 | |
| 
 | |
| def init_app(app: Flask):
 | |
|     if app.config.get("API_COMPRESSION_ENABLED"):
 | |
|         from flask_compress import Compress
 | |
| 
 | |
|         app.config["COMPRESS_MIMETYPES"] = [
 | |
|             "application/json",
 | |
|             "image/svg+xml",
 | |
|             "text/html",
 | |
|         ]
 | |
| 
 | |
|         compress = Compress()
 | |
|         compress.init_app(app)
 | 
