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
Optionally, you can enable live preview functionality with the `HEADLESS_PREVIEW_LIVE` setting:
48
54
49
-
```sh
50
-
$ ./manage.py migrate
55
+
```python
56
+
# settings.py
57
+
HEADLESS_PREVIEW_LIVE=True
51
58
```
52
59
60
+
Note: Your front-end app must be set up for live preview, a feature that usually requires [Django Channels](https://github.com/django/channels/) or other WebSocket/async libraries.
53
61
54
62
## Usage
55
63
@@ -97,6 +105,7 @@ from rest_framework.response import Response
97
105
# Create the router. "wagtailapi" is the URL namespace
0 commit comments