You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+4-4
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Simple Usage
32
32
~~~~~~~~~~~~
33
33
34
34
In the simplest case, initialize the Flask-Cors extension with default arguments in order to allow CORS for all domains on all routes.
35
-
See the full list of options in the `documentation <https://flask-cors.corydolphin.com/en/latest/api.html#extension>`__.
35
+
See the full list of options in the `documentation <https://flask-cors.readthedocs.io/en/latest/api.html#extension>`__.
36
36
37
37
.. code:: python
38
38
@@ -51,7 +51,7 @@ Resource specific CORS
51
51
^^^^^^^^^^^^^^^^^^^^^^
52
52
53
53
Alternatively, you can specify CORS options on a resource and origin level of granularity by passing a dictionary as the `resources` option, mapping paths to a set of options.
54
-
See the full list of options in the `documentation <https://flask-cors.corydolphin.com/en/latest/api.html#extension>`__.
54
+
See the full list of options in the `documentation <https://flask-cors.readthedocs.io/en/latest/api.html#extension>`__.
55
55
56
56
.. code:: python
57
57
@@ -67,7 +67,7 @@ Route specific CORS via decorator
67
67
68
68
This extension also exposes a simple decorator to decorate flask routes with.
69
69
Simply add ``@cross_origin()`` below a call to Flask's ``@app.route(..)`` to allow CORS on a given route.
70
-
See the full list of options in the `decorator documentation <https://flask-cors.corydolphin.com/en/latest/api.html#decorator>`__.
70
+
See the full list of options in the `decorator documentation <https://flask-cors.readthedocs.io/en/latest/api.html#decorator>`__.
71
71
72
72
.. code:: python
73
73
@@ -79,7 +79,7 @@ See the full list of options in the `decorator documentation <https://flask-cors
79
79
Documentation
80
80
-------------
81
81
82
-
For a full list of options, please see the full `documentation <https://flask-cors.corydolphin.com/en/latest/api.html>`__
82
+
For a full list of options, please see the full `documentation <https://flask-cors.readthedocs.io/en/latest/api.html>`__
0 commit comments