We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 965222f commit 062553dCopy full SHA for 062553d
.gitignore
@@ -5,5 +5,5 @@ bower_components
5
/venv
6
__pycache__/
7
*~
8
-/ide/secret.py
+/ide/.vscode
9
ide/routes.py
@@ -108,7 +108,10 @@ def idejs_static():
108
109
@app.route('/lib/<path:filename>')
110
def lib_static(filename):
111
- return flask.send_from_directory('../lib', filename)
+ cache_timeout = None
112
+ if is_running_locally():
113
+ cache_timeout=0
114
+ return flask.send_from_directory('../lib', filename, cache_timeout=cache_timeout)
115
116
@app.route('/package/<path:filename>')
117
def package_static(filename):
0 commit comments