File size: 272 Bytes
841a954 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from flask import Flask, render_template
from flask_cors import CORS # Import CORS
app = Flask(__name__)
# Enable CORS for the entire app
CORS(app)
@app.route('/')
def home():
return render_template('index.html')
if __name__ == "__main__":
app.run(debug=True) |