Fix static routing error

This commit is contained in:
rubenwardy
2018-05-25 15:23:55 +01:00
parent 3565058eea
commit ebd99165e9
2 changed files with 1 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ from flask_wtf.csrf import CsrfProtect
from flask_flatpages import FlatPages
import os
app = Flask(__name__)
app = Flask(__name__, static_folder="public/static")
app.config["FLATPAGES_ROOT"] = "flatpages"
app.config["FLATPAGES_EXTENSION"] = ".md"
app.config.from_pyfile(os.environ["FLASK_CONFIG"])