Update app.py
Browse files
app.py
CHANGED
|
@@ -55,7 +55,7 @@ def index():
|
|
| 55 |
# 静的ファイルを提供するためのルート
|
| 56 |
@app.route('/<path:filename>')
|
| 57 |
def static_files(filename):
|
| 58 |
-
return send_from_directory(os.path.join(temp_dir), filename)
|
| 59 |
|
| 60 |
# main.jsの存在を確認するエンドポイント
|
| 61 |
@app.route('/check_main_js')
|
|
|
|
| 55 |
# 静的ファイルを提供するためのルート
|
| 56 |
@app.route('/<path:filename>')
|
| 57 |
def static_files(filename):
|
| 58 |
+
return send_from_directory(os.path.join(temp_dir, 'views'), filename)
|
| 59 |
|
| 60 |
# main.jsの存在を確認するエンドポイント
|
| 61 |
@app.route('/check_main_js')
|