machsix
use Blueprint to handle static files, add "url_prefix" in config.json for reverse proxy
9ca54c4
raw
history blame
No virus
196 Bytes
from flask import Blueprint
bp = Blueprint('bp', __name__,
template_folder='./../client/html',
static_folder='./../client',
static_url_path='assets')