from flask import Flask,send_from_directory app = Flask(__name__,static_url_path='',static_folder='build') import os @app.route('/static/') def send_js(path): return send_from_directory('build/static', path) @app.route('/') def hello_world(): return app.send_static_file('index.html')