How Do We Serve Static Files?
In this lesson, we will study how we can host the static files present in our Flask application.
What are static files?
Static files, or assets, are the files that the server sends to the clients “as-it-is”, i.e., without any intervention. For example, any CSS
files, background images, or JavaScript
files that we might have on our website are sent to the ...