我正在使用这样的 connexion 2.4.0 库初始化应用程序:
connex_app = connexion.App(__name__, specification_dir='./')
app = connex_app.app
我需要以某种方式指定静态和模板目录的路径,因为它们不在根目录中。在 Flask 我会使用这样的东西
app = Flask(__name__, static_folder='../frontEnd/static', template_folder='../frontEnd/templates')
我知道 connexion 默认在根目录中查找静态和模板,但是有没有办法指示另一条路径?