mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08: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)
|